Home | History | Annotate | Download | only in browser

Lines Matching refs:BOOKMARK

38     // We only want the user to be able to bookmark content that
52 * Add a bookmark to the database.
54 * Toast confirming that the bookmark has been added. If the
56 * @param cr The ContentResolver being used to add the bookmark to the db.
58 * @param name Provided name for the bookmark.
59 * @param thumbnail A thumbnail for the bookmark.
76 // it, so convert the history item to a bookmark
79 map.put(Browser.BookmarkColumns.BOOKMARK, 1);
93 // The old bookmark has the same name.
104 // Adding a bookmark for a site the user has visited,
105 // or a new bookmark (with a different name) for a site
110 map.put(Browser.BookmarkColumns.BOOKMARK, 1);
118 // a new bookmark with the same url but a different
119 // name. The new bookmark should have the same
120 // number of visits as the already created bookmark.
124 // Bookmark starts with 3 extra visits so that it will
145 * Remove a bookmark from the database. If the url is a visited site, it
149 * Toast confirming that the bookmark has been removed. If the
151 * @param cr The ContentResolver being used to remove the bookmark.
179 // It is no longer a bookmark, but it is still a visited
182 values.put(Browser.BookmarkColumns.BOOKMARK, 0);