HomeSort by relevance Sort by last modified time
    Searched defs:model_types (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/chrome/browser/sync/test/integration/
p2p_invalidation_forwarder.cc 31 syncer::ModelTypeSet model_types = local
33 syncer::ObjectIdSet ids = ModelTypeSetToObjectIdSet(model_types);
  /external/chromium_org/sync/syncable/
model_type_unittest.cc 41 const ModelTypeSet model_types(BOOKMARKS, APPS);
43 scoped_ptr<base::ListValue> value(ModelTypeSetToValue(model_types));
54 ModelTypeSet model_types; local
55 scoped_ptr<base::ListValue> value(ModelTypeSetToValue(model_types));
56 EXPECT_TRUE(model_types.Equals(ModelTypeSetFromValue(*value)));
59 model_types.Put(BOOKMARKS);
60 model_types.Put(APPS);
61 value.reset(ModelTypeSetToValue(model_types));
62 EXPECT_TRUE(model_types.Equals(ModelTypeSetFromValue(*value)));
model_type.cc 703 std::string ModelTypeSetToString(ModelTypeSet model_types) {
705 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
716 ModelTypeSet model_types; local
732 model_types.Put(type);
735 return model_types;
738 base::ListValue* ModelTypeSetToValue(ModelTypeSet model_types) {
740 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
    [all...]
  /external/chromium_org/sync/notifier/
invalidation_util.cc 95 ObjectIdSet ModelTypeSetToObjectIdSet(ModelTypeSet model_types) {
97 for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
109 ModelTypeSet model_types; local
116 model_types.Put(model_type);
118 return model_types;
  /external/chromium_org/sync/engine/
sync_scheduler_unittest.cc 282 ModelTypeSet model_types(BOOKMARKS);
291 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
298 model_types.Remove(BOOKMARKS);
299 model_types.Put(AUTOFILL);
303 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
311 const ModelTypeSet model_types(BOOKMARKS);
323 model_types,
324 TypesToRoutingInfo(model_types),
339 const ModelTypeSet model_types(BOOKMARKS);
353 model_types,
443 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
638 scheduler()->ScheduleLocalNudge(zero(), model_types, FROM_HERE); local
    [all...]
  /external/chromium_org/sync/tools/
sync_client.cc 292 ModelTypeSet model_types; local
293 model_types.Put(BOOKMARKS);
294 model_types.Put(PREFERENCES);
295 model_types.Put(PASSWORDS);
296 model_types.Put(AUTOFILL);
297 model_types.Put(THEMES);
298 model_types.Put(TYPED_URLS);
299 model_types.Put(EXTENSIONS);
300 model_types.Put(NIGORI);
301 model_types.Put(SEARCH_ENGINES)
    [all...]

Completed in 372 milliseconds