HomeSort by relevance Sort by last modified time
    Searched refs:TYPED_URLS (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/components/sync_driver/
user_selectable_sync_type.h 30 TYPED_URLS = 5,
sync_prefs.cc 139 model_set.Put(syncer::TYPED_URLS);
304 case syncer::TYPED_URLS:
420 pref_groups_[syncer::TYPED_URLS].Put(syncer::HISTORY_DELETE_DIRECTIVES);
421 pref_groups_[syncer::TYPED_URLS].Put(syncer::SESSIONS);
422 pref_groups_[syncer::TYPED_URLS].Put(syncer::FAVICON_IMAGES);
423 pref_groups_[syncer::TYPED_URLS].Put(syncer::FAVICON_TRACKING);
sync_prefs_unittest.cc 82 registered_types.Remove(syncer::TYPED_URLS);
157 if (it.Get() == syncer::TYPED_URLS) {
  /external/chromium_org/chrome/browser/sync/glue/
typed_url_change_processor.cc 114 if (typed_url_root.InitTypeRoot(syncer::TYPED_URLS) !=
119 syncer::TYPED_URLS);
131 update_node.InitByClientTagLookup(syncer::TYPED_URLS, tag);
138 syncer::TYPED_URLS);
144 create_node.InitUniqueByCreation(syncer::TYPED_URLS,
151 syncer::TYPED_URLS);
179 syncer::TYPED_URLS);
189 if (sync_node.InitByClientTagLookup(syncer::TYPED_URLS,
237 if (typed_url_root.InitTypeRoot(syncer::TYPED_URLS) !=
242 syncer::TYPED_URLS);
    [all...]
typed_url_data_type_controller.cc 87 return syncer::TYPED_URLS;
118 syncer::TYPED_URLS);
sync_backend_registrar.cc 45 return type == syncer::TYPED_URLS;
124 LOG_IF(WARNING, initial_types.Has(syncer::TYPED_URLS))
126 routing_info_.erase(syncer::TYPED_URLS);
150 LOG(WARNING) << "No history worker -- removing TYPED_URLS";
151 filtered_types_to_add.Remove(syncer::TYPED_URLS);
typed_url_model_associator.h 50 static syncer::ModelType model_type() { return syncer::TYPED_URLS; }
typed_url_model_associator.cc 185 history::URLRows typed_urls; local
188 history_backend_ && history_backend_->GetAllTypedURLs(&typed_urls);
213 for (history::URLRows::iterator ix = typed_urls.begin();
214 ix != typed_urls.end();) {
221 ix = typed_urls.erase(ix);
229 if (typed_url_root.InitTypeRoot(syncer::TYPED_URLS) !=
239 for (history::URLRows::iterator ix = typed_urls.begin();
240 ix != typed_urls.end(); ++ix) {
247 if (node.InitByClientTagLookup(syncer::TYPED_URLS, tag) ==
267 if (write_node.InitByClientTagLookup(syncer::TYPED_URLS, tag) !
    [all...]
  /external/chromium_org/sync/util/
data_type_histogram.h 57 case ::syncer::TYPED_URLS: \
  /external/chromium_org/sync/syncable/
model_type.cc 53 case TYPED_URLS:
153 case TYPED_URLS:
259 return TYPED_URLS;
356 set.Put(TYPED_URLS);
479 case TYPED_URLS:
558 case TYPED_URLS:
654 return TYPED_URLS;
775 case TYPED_URLS:
887 case TYPED_URLS:
984 *model_type = TYPED_URLS;
    [all...]
model_type_unittest.cc 117 syncer::ModelTypeSet two(BOOKMARKS, TYPED_URLS);
nigori_util.cc 256 encrypted_types.Has(TYPED_URLS));
294 encrypted_types.Put(TYPED_URLS);
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_typed_url_unittest.cc 207 typed_url_root.InitTypeRoot(syncer::TYPED_URLS));
212 node.InitUniqueByCreation(syncer::TYPED_URLS, typed_url_root, tag);
295 if (typed_url_root.InitTypeRoot(syncer::TYPED_URLS) !=
370 test->CreateRoot(syncer::TYPED_URLS);
386 CreateRootHelper create_root(this, syncer::TYPED_URLS);
406 CreateRootHelper create_root(this, syncer::TYPED_URLS);
435 CreateRootHelper create_root(this, syncer::TYPED_URLS);
456 CreateRootHelper create_root(this, syncer::TYPED_URLS);
605 CreateRootHelper create_root(this, syncer::TYPED_URLS);
635 CreateRootHelper create_root(this, syncer::TYPED_URLS);
    [all...]
profile_sync_components_factory_impl_unittest.cc 67 datatypes.push_back(syncer::TYPED_URLS);
startup_controller_unittest.cc 193 types.Remove(syncer::TYPED_URLS);
  /external/chromium_org/chrome/browser/sync/test/integration/
enable_disable_test.cc 121 // SESSIONS is lumped together with PROXY_TABS and TYPED_URLS.
122 // HISTORY_DELETE_DIRECTIVES is lumped together with TYPED_URLS.
144 } else if (it.Get() == syncer::TYPED_URLS) {
151 // SESSIONS should be enabled only if TYPED_URLS is.
152 ASSERT_EQ(GetClient(0)->IsTypePreferred(syncer::TYPED_URLS),
sync_errors_test.cc 225 ASSERT_TRUE(synced_datatypes.Has(syncer::TYPED_URLS));
231 ASSERT_TRUE(AwaitTypeDisabled(GetSyncService(0), syncer::TYPED_URLS));
two_client_typed_urls_sync_test.cc 191 GetClient(0)->DisableSyncForDatatype(syncer::TYPED_URLS);
210 GetClient(0)->EnableSyncForDatatype(syncer::TYPED_URLS);
  /external/chromium_org/chrome/browser/history/
typed_url_syncable_service.cc 85 DCHECK_EQ(type, syncer::TYPED_URLS);
98 DCHECK_EQ(type, syncer::TYPED_URLS);
124 syncer::TYPED_URLS);
typed_url_syncable_service.h 43 static syncer::ModelType model_type() { return syncer::TYPED_URLS; }
typed_url_syncable_service_unittest.cc 227 syncer::TYPED_URLS,
277 EXPECT_EQ(syncer::TYPED_URLS, changes[0].sync_data().GetDataType());
324 EXPECT_EQ(syncer::TYPED_URLS, changes[0].sync_data().GetDataType());
402 EXPECT_EQ(syncer::TYPED_URLS, changes[0].sync_data().GetDataType());
472 ASSERT_EQ(syncer::TYPED_URLS, changes[i].sync_data().GetDataType());
520 ASSERT_EQ(syncer::TYPED_URLS, changes[i].sync_data().GetDataType());
  /external/chromium_org/chrome/browser/extensions/api/preferences_private/
preferences_private_apitest.cc 99 preferred_types.Remove(syncer::TYPED_URLS);
  /external/chromium_org/sync/internal_api/public/base/
model_type.h 68 TYPED_URLS,
  /external/chromium_org/sync/sessions/
nudge_tracker_unittest.cc 116 nudge_tracker_.RecordLocalRefreshRequest(ModelTypeSet(TYPED_URLS));
135 nudge_tracker_.RecordLocalRefreshRequest(ModelTypeSet(TYPED_URLS));
741 EXPECT_EQ(nudge_tracker_.RecordLocalChange(ModelTypeSet(TYPED_URLS)),
766 nudge_tracker_.RecordLocalChange(ModelTypeSet(TYPED_URLS)),
767 nudge_tracker_.RecordLocalChange(ModelTypeSet(TYPED_URLS, AUTOFILL)));
    [all...]
  /external/chromium_org/sync/internal_api/
base_node.cc 255 DCHECK_EQ(GetModelType(), TYPED_URLS);

Completed in 273 milliseconds

1 2