summaryrefslogtreecommitdiffstats
path: root/core/java/android/provider/Browser.java
diff options
context:
space:
mode:
authorWilliam Clark <wclark@codeaurora.org>2015-10-13 13:17:05 -0700
committerSteve Kondik <steve@cyngn.com>2015-11-30 19:31:22 -0800
commit570d204c4765330e872806022bd25b7b89b936f8 (patch)
tree73d12c5a8a6aa6bb1f4c89660ae6d52a4a81f6da /core/java/android/provider/Browser.java
parent114b9c670dabacd2f5e3e7b3f2ae8033221b800c (diff)
downloadframeworks_base-570d204c4765330e872806022bd25b7b89b936f8.zip
frameworks_base-570d204c4765330e872806022bd25b7b89b936f8.tar.gz
frameworks_base-570d204c4765330e872806022bd25b7b89b936f8.tar.bz2
Udpate instrumentation code
Added changes to support new features in QSSP Change-Id: I92c0a4eb3cb5363fbf08185f25644a3202c38788
Diffstat (limited to 'core/java/android/provider/Browser.java')
-rw-r--r--core/java/android/provider/Browser.java17
1 files changed, 5 insertions, 12 deletions
diff --git a/core/java/android/provider/Browser.java b/core/java/android/provider/Browser.java
index 0c575b4..299a95c 100644
--- a/core/java/android/provider/Browser.java
+++ b/core/java/android/provider/Browser.java
@@ -244,7 +244,7 @@ public class Browser {
*/
public static final Cursor getAllBookmarks(ContentResolver cr) throws
IllegalStateException {
- android.util.SeempLog.record(41);
+ android.util.SeempLog.record(32);
return new MatrixCursor(new String[]{Bookmarks.URL}, 0);
}
@@ -257,7 +257,7 @@ public class Browser {
*/
public static final Cursor getAllVisitedUrls(ContentResolver cr) throws
IllegalStateException {
- android.util.SeempLog.record(42);
+ android.util.SeempLog.record(33);
return new MatrixCursor(new String[]{Combined.URL}, 0);
}
@@ -266,7 +266,7 @@ public class Browser {
}
private static final Cursor getVisitedLike(ContentResolver cr, String url) {
- android.util.SeempLog.record(44);
+ android.util.SeempLog.record(34);
boolean secure = false;
String compareString = url;
if (compareString.startsWith("http://")) {
@@ -317,7 +317,6 @@ public class Browser {
*/
public static final void updateVisitedHistory(ContentResolver cr,
String url, boolean real) {
- android.util.SeempLog.record(47);
}
/**
@@ -328,7 +327,7 @@ public class Browser {
*/
@Deprecated
public static final String[] getVisitedHistory(ContentResolver cr) {
- android.util.SeempLog.record(43);
+ android.util.SeempLog.record(35);
return new String[0];
}
@@ -343,7 +342,6 @@ public class Browser {
* @removed
*/
public static final void truncateHistory(ContentResolver cr) {
- android.util.SeempLog.record(46);
}
/**
@@ -354,7 +352,6 @@ public class Browser {
* @removed
*/
public static final boolean canClearHistory(ContentResolver cr) {
- android.util.SeempLog.record(36);
return false;
}
@@ -382,7 +379,6 @@ public class Browser {
*/
public static final void deleteHistoryTimeFrame(ContentResolver cr,
long begin, long end) {
- android.util.SeempLog.record(39);
}
/**
@@ -394,7 +390,6 @@ public class Browser {
*/
public static final void deleteFromHistory(ContentResolver cr,
String url) {
- android.util.SeempLog.record(38);
}
/**
@@ -405,7 +400,6 @@ public class Browser {
* @removed
*/
public static final void addSearchUrl(ContentResolver cr, String search) {
- android.util.SeempLog.record(35);
}
/**
@@ -415,7 +409,6 @@ public class Browser {
* @removed
*/
public static final void clearSearches(ContentResolver cr) {
- android.util.SeempLog.record(48);
}
/**
@@ -432,7 +425,7 @@ public class Browser {
*/
public static final void requestAllIcons(ContentResolver cr, String where,
WebIconDatabase.IconListener listener) {
- android.util.SeempLog.record(45);
+ android.util.SeempLog.record(36);
// Do nothing: this is no longer used.
}