Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 78a99cea authored by Cyrus Master's avatar Cyrus Master
Browse files

Adds creation and last-modified timestamps to the bookmarks contract for the browser provider.

Change-Id: Ib6d733e3b93fc854b3ddb5c011f61534462cb266
parent e1ab2228
Loading
Loading
Loading
Loading
+16 −2
Original line number Diff line number Diff line
@@ -120,6 +120,20 @@ public class BrowserContract {
         * <P>Type: INTEGER (boolean)</P>
         */
        public static final String DIRTY = "dirty";

        /**
         * The time that this row was created on its originating client (msecs
         * since the epoch).
         * <P>Type: INTEGER</P>
         */
        public static final String DATE_CREATED = "created";

        /**
         * The time that this row was last modified by a client (msecs since the epoch).
         * <P>Type: INTEGER</P>
         */
        public static final String DATE_MODIFIED = "modified";

    }

    interface BookmarkColumns {