HomeSort by relevance Sort by last modified time
    Searched refs:bookmark (Results 26 - 50 of 60) sorted by null

12 3

  /external/chromium_org/sync/engine/
syncer_util.cc 309 // In the new-style protocol, the server no longer sends bookmark info for
314 sync_pb::BookmarkSpecifics* bookmark = pb.mutable_bookmark(); local
316 bookmark->set_url(url);
318 bookmark->set_favicon(favicon_bytes);
324 // Update our unique bookmark tag. In many cases this will be identical to
401 // Legacy protocol response for bookmark data.
402 const sync_pb::SyncEntity::BookmarkData& bookmark = update.bookmarkdata(); local
404 bookmark.bookmark_url(),
405 bookmark.bookmark_favicon(),
syncer_unittest.cc 268 EXPECT_EQ("PNG", specifics.bookmark().favicon());
269 EXPECT_EQ("http://demo/", specifics.bookmark().url());
659 A.Put(NON_UNIQUE_NAME, "bookmark");
714 sync_pb::EntitySpecifics bookmark, encrypted_bookmark; local
715 bookmark.mutable_bookmark()->set_url("url");
716 bookmark.mutable_bookmark()->set_title("title");
742 GetCryptographer(&wtrans)->Encrypt(bookmark,
829 sync_pb::EntitySpecifics bookmark, encrypted_bookmark, modified_bookmark; local
830 bookmark.mutable_bookmark()->set_title("title");
831 other_cryptographer.Encrypt(bookmark,
    [all...]
  /external/chromium_org/sync/internal_api/
base_node.cc 86 // we fill the unencrypted_data_ with a copy of the bookmark specifics that
90 !specifics.bookmark().has_title() &&
96 DVLOG(1) << "Reading from legacy bookmark, manually returning title "
141 specifics.bookmark();
283 return GetEntitySpecifics().bookmark();
  /external/chromium/chrome/browser/importer/
importer_unittest.cc 241 virtual void AddBookmarkEntry(const std::vector<BookmarkEntry>& bookmark,
245 for (size_t i = 0; i < bookmark.size(); ++i) {
246 if (FindBookmarkEntry(bookmark[i], kIEBookmarks,
470 "http://on.toolbar/bookmark/folder"},
472 L"On Bookmark Toolbar",
473 "http://on.toolbar/bookmark"},
475 L"New Bookmark",
607 virtual void AddBookmarkEntry(const std::vector<BookmarkEntry>& bookmark,
610 for (size_t i = 0; i < bookmark.size(); ++i) {
611 if (FindBookmarkEntry(bookmark[i], kFirefox2Bookmarks
    [all...]
  /external/chromium/chrome/browser/sync/protocol/
proto_value_conversions_unittest.cc 144 SET_EXTENSION(bookmark);
proto_value_conversions.cc 301 SET_EXTENSION(sync_pb, bookmark, BookmarkSpecificsToValue);
  /external/chromium_org/chrome/browser/sync/test/integration/
two_client_bookmarks_sync_test.cc 146 const BookmarkNode* bookmark = AddURL(0, kGenericURLTitle, page_url); local
148 ASSERT_TRUE(bookmark != NULL);
150 SetFavicon(0, bookmark, icon_url, CreateFavicon(SK_ColorWHITE),
308 const BookmarkNode* bookmark = AddURL(0, title, GURL(kGenericURL)); local
309 ASSERT_TRUE(bookmark != NULL);
314 SetTitle(0, bookmark, new_title);
325 const BookmarkNode* bookmark = AddURL(0, kGenericURLTitle, url); local
326 ASSERT_TRUE(bookmark != NULL);
331 ASSERT_TRUE(SetURL(0, bookmark, new_url) != NULL);
337 // Test Scribe ID - 371818 - Renaming the same bookmark name twice
344 const BookmarkNode* bookmark = AddURL(0, title, GURL(kGenericURL)); local
366 const BookmarkNode* bookmark = AddURL(0, kGenericURLTitle, url); local
484 const BookmarkNode* bookmark = AddURL(0, title, url); local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/bookmarks/
bookmarks_api.cc 519 if (!params->bookmark.parent_id.get()) {
523 if (!GetBookmarkIdAsInt64(*params->bookmark.parent_id, &parentId))
537 if (!params->bookmark.index.get()) { // Optional (defaults to end).
540 index = *params->bookmark.index;
548 if (params->bookmark.title.get())
549 title = UTF8ToUTF16(*params->bookmark.title.get());
552 if (params->bookmark.url.get())
553 url_string = *params->bookmark.url.get();
806 // Mapper for any bookmark function accepting bookmark IDs as parameters, wher
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_util.cc 363 // In the new-style protocol, the server no longer sends bookmark info for
368 sync_pb::BookmarkSpecifics* bookmark = pb.MutableExtension(sync_pb::bookmark); local
370 bookmark->set_url(url);
372 bookmark->set_favicon(favicon_bytes);
433 // Legacy protocol response for bookmark data.
434 const SyncEntity::BookmarkData& bookmark = update.bookmarkdata(); local
436 bookmark.bookmark_url(),
437 bookmark.bookmark_favicon(),
    [all...]
apply_updates_command_unittest.cc 53 // Create a new unapplied bookmark node with a parent.
69 default_bookmark_specifics.MutableExtension(sync_pb::bookmark);
  /external/chromium/chrome/browser/sync/syncable/
model_type.cc 28 specifics->MutableExtension(sync_pb::bookmark);
151 if (specifics.HasExtension(sync_pb::bookmark))
406 const char kBookmarkNotificationType[] = "BOOKMARK";
syncable_unittest.cc 70 specifics.MutableExtension(sync_pb::bookmark)->set_url("http://demo/");
71 specifics.MutableExtension(sync_pb::bookmark)->set_favicon(bytes,
81 ASSERT_TRUE(e->Get(SPECIFICS).HasExtension(sync_pb::bookmark));
83 e->Get(SPECIFICS).GetExtension(sync_pb::bookmark).url());
85 e->Get(SPECIFICS).GetExtension(sync_pb::bookmark).favicon());
    [all...]
  /external/chromium_org/chrome/browser/resources/history/
history_mobile.css 236 .entry .bookmark-section {
history.css 534 .entry .bookmark-section {
  /external/chromium_org/chrome/browser/ui/webui/ntp/android/
bookmarks_handler.cc 83 // Listen for the bookmark change. We need the both bookmark and folder
109 // Register ourselves as the handler for the bookmark javascript callbacks.
228 const BookmarkNode* bookmark= folder->GetChild(i); local
229 PopulateBookmark(bookmark, bookmarks);
267 // If we receive an ID that no longer maps to a bookmark folder, just
268 // return the initial bookmark folder.
408 // Parses a bookmark ID passed back from the NTP. The IDs differ from the
409 // normal int64 bookmark ID because we prepend a "p" if the ID represents a
410 // partner bookmark, and an "m" if the ID represents a managed bookmark
    [all...]
  /external/chromium_org/chrome/browser/resources/ntp_android/
ntp_android.js 29 * Constant for the localStorage key used to specify the default bookmark
30 * folder to be selected when navigating to the bookmark tab for the first
139 * The ID of the bookmark folder currently selected.
205 * replaced once the bookmark data has loaded to ensure the proper folder
342 * The current bookmark data being displayed. Keep a reference to this data
343 * in case the sync enabled state changes. In this case, the bookmark data
373 * Flag indicating if we are on bookmark shortcut mode.
374 * In this mode, only the bookmark section is available and selecting
375 * a non-folder bookmark adds it to the home screen.
449 // Special case to choose a bookmark for adding a shortcut
    [all...]
  /external/chromium/base/
values_unittest.cc 48 DictionaryValue* bookmark; local
50 ASSERT_TRUE(bookmark_list->GetDictionary(0, &bookmark));
52 ASSERT_TRUE(bookmark->GetString("name", &bookmark_name));
55 ASSERT_TRUE(bookmark->GetString("url", &bookmark_url));
  /external/chromium_org/base/
values_unittest.cc 47 DictionaryValue* bookmark; local
49 ASSERT_TRUE(bookmark_list->GetDictionary(0, &bookmark));
51 ASSERT_TRUE(bookmark->GetString("name", &bookmark_name));
54 ASSERT_TRUE(bookmark->GetString("url", &bookmark_url));
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_model.cc 43 // Helper to get a mutable bookmark node.
67 // Whitespace characters to strip from bookmark titles.
94 // folder/bookmark names with spaces.
324 // Skip deleting permanent nodes. Permanent bookmark nodes are the root and
576 BookmarkService::URLAndTitle bookmark; local
577 bookmark.url = *url;
578 bookmark.title = (*i)->GetTitle();
579 bookmarks->push_back(bookmark);
    [all...]
  /external/chromium_org/sync/protocol/
proto_value_conversions_unittest.cc 235 SET_FIELD(bookmark);
  /external/chromium_org/ui/base/clipboard/
clipboard.h 276 // Reads a bookmark from the clipboard, if available.
361 static void ParseBookmarkClipboardFormat(const string16& bookmark,
  /external/smack/src/org/jivesoftware/smackx/bookmark/
Bookmarks.java 19 package org.jivesoftware.smackx.bookmark;
33 * Bookmark Storage (JEP-0048) defined a protocol for the storage of bookmarks to conference rooms and other entities
42 * // Bookmark a URL
47 * // Bookmark a Conference room.
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 137 MediaStore.Audio.Media.BOOKMARK // index must match BOOKMARKCOLIDX below
1078 long bookmark = getBookmark(); local
1443 long bookmark = getBookmark(); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 93 public static final String IS_BOOKMARK = "bookmark";
346 // Combined bookmark half
488 // Enable bookmark sync on all accounts
528 }, BookmarkColumns.BOOKMARK + "!=0", null,
559 + BookmarkColumns.BOOKMARK + " = 0",
1425 Integer bookmark = values.getAsInteger(BookmarkColumns.BOOKMARK); local
1674 Integer bookmark = values.getAsInteger(BookmarkColumns.BOOKMARK); local
    [all...]
  /external/chromium/net/tools/testserver/
chromiumsync.py 40 BOOKMARK,
58 BOOKMARK: bookmark_specifics_pb2.bookmark,
244 parent_tag='google_chrome', sync_type=BOOKMARK),
245 PermanentItem('bookmark_bar', name='Bookmark Bar',
246 parent_tag='google_chrome_bookmarks', sync_type=BOOKMARK),
248 parent_tag='google_chrome_bookmarks', sync_type=BOOKMARK),
    [all...]

Completed in 3363 milliseconds

12 3