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

Commit dcfd5d78 authored by Cyrus Master's avatar Cyrus Master Committed by Android (Google) Code Review
Browse files

Merge "Adds creation and last-modified timestamps to the bookmarks contract...

Merge "Adds creation and last-modified timestamps to the bookmarks contract for the browser provider."
parents 8eb1bfe0 78a99cea
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 {