diff --git a/core/java/android/provider/BrowserContract.java b/core/java/android/provider/BrowserContract.java index 22bbe6878465b..f8a2a13033fb4 100644 --- a/core/java/android/provider/BrowserContract.java +++ b/core/java/android/provider/BrowserContract.java @@ -77,11 +77,11 @@ public class BrowserContract { public static final String FOLDER_NAME_BOOKMARKS = "google_chrome_bookmarks"; public static final String FOLDER_NAME_BOOKMARKS_BAR = "bookmark_bar"; public static final String FOLDER_NAME_OTHER_BOOKMARKS = "other_bookmarks"; - + /** The client unique ID for an item */ public static final String CLIENT_UNIQUE = BaseSyncColumns.SYNC4; } - + /** * Columns that appear when each row of a table belongs to a specific * account, including sync information that an account may need. @@ -120,6 +120,20 @@ public class BrowserContract { *
Type: INTEGER (boolean)
*/ public static final String DIRTY = "dirty"; + + /** + * The time that this row was created on its originating client (msecs + * since the epoch). + *Type: INTEGER
+ */ + public static final String DATE_CREATED = "created"; + + /** + * The time that this row was last modified by a client (msecs since the epoch). + *Type: INTEGER
+ */ + public static final String DATE_MODIFIED = "modified"; + } interface BookmarkColumns {