/external/chromium/chrome/browser/sync/syncable/ |
model_type_unittest.cc | 43 ModelTypeBitSet model_types; local 44 model_types.set(syncable::BOOKMARKS); 45 model_types.set(syncable::APPS); 47 scoped_ptr<ListValue> value(ModelTypeBitSetToValue(model_types)); 57 ModelTypeSet model_types; local 58 model_types.insert(syncable::BOOKMARKS); 59 model_types.insert(syncable::APPS); 61 scoped_ptr<ListValue> value(ModelTypeSetToValue(model_types));
|
model_type.cc | 230 std::string ModelTypeSetToString(const ModelTypeSet& model_types) { 232 for (ModelTypeSet::const_iterator iter = model_types.begin(); 233 iter != model_types.end();) { 235 if (++iter != model_types.end()) 272 ModelTypeBitSet* model_types) { 273 DCHECK(model_types); 278 *model_types = ModelTypeBitSet(model_type_bitset_string); 291 ListValue* ModelTypeBitSetToValue(const ModelTypeBitSet& model_types) { 294 if (model_types[i]) { 302 ListValue* ModelTypeSetToValue(const ModelTypeSet& model_types) { [all...] |
model_type.h | 115 std::string ModelTypeSetToString(const ModelTypeSet& model_types); 121 // failed to parse string, returns false and model_types is unspecified. 124 ModelTypeBitSet* model_types); 130 ListValue* ModelTypeBitSetToValue(const ModelTypeBitSet& model_types); 133 ListValue* ModelTypeSetToValue(const ModelTypeSet& model_types);
|
model_type_payload_map.h | 30 const ModelTypeBitSet& model_types,
|
/external/chromium/chrome/browser/resources/sync_internals/ |
sync_log.js | 96 chrome.sync.onMigrationNeededForTypes.addListener(function (model_types) { 98 model_types: model_types
|
chrome_sync.js | 195 function onMigrationNeededForTypes(model_types) { 196 chrome.sync.onMigrationNeededForTypes.dispatch_(model_types);
|
/external/chromium/chrome/browser/sync/engine/ |
syncer_thread2_unittest.cc | 206 syncable::ModelTypeBitSet model_types; local 207 model_types[syncable::BOOKMARKS] = true; 213 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_LOCAL, model_types, local 218 EXPECT_TRUE(CompareModelTypeBitSetToModelTypePayloadMap(model_types, 225 model_types[syncable::BOOKMARKS] = false; 226 model_types[syncable::AUTOFILL] = true; 230 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_LOCAL, model_types, local 235 EXPECT_TRUE(CompareModelTypeBitSetToModelTypePayloadMap(model_types, 246 syncable::ModelTypeBitSet model_types; local 247 model_types[syncable::BOOKMARKS] = true 273 syncable::ModelTypeBitSet model_types; local 336 syncable::ModelTypeBitSet model_types; local 361 syncer_thread()->ScheduleNudge(zero(), NUDGE_SOURCE_LOCAL, model_types, local [all...] |
syncapi_unittest.cc | 1022 syncable::ModelTypeBitSet model_types; local [all...] |
syncapi.cc | 2341 syncable::ModelTypeBitSet model_types; local [all...] |
syncapi.h | [all...] |