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

  /external/chromium/chrome/browser/sync/engine/
apply_updates_command.cc 53 syncable::ModelType model_type = syncable::ModelTypeFromInt(i); local
56 dir->set_initial_sync_ended_for_type(model_type, true);
cleanup_disabled_types_command.cc 10 #include "chrome/browser/sync/syncable/model_type.h"
22 syncable::ModelType model_type = syncable::ModelTypeFromInt(i); local
24 if (session->routing_info().count(model_type))
45 if (previous_routing.empty() || previous_routing.count(model_type))
46 to_cleanup.insert(model_type);
download_updates_command.cc 50 syncable::ModelType model_type = syncable::ModelTypeFromInt(i->first); local
54 dir->GetDownloadProgress(model_type, progress_marker);
process_updates_command.cc 80 const syncable::ModelType model_type = entry.GetModelType(); local
87 model_type);
verify_updates_command.cc 85 const syncable::ModelType model_type = entry.GetModelType(); local
119 deleted, is_directory, model_type);
syncapi_unittest.cc 81 ModelType model_type,
87 EXPECT_TRUE(node.InitUniqueByCreation(model_type, root_node, client_tag));
95 syncable::ModelType model_type,
101 EXPECT_TRUE(node.InitUniqueByCreation(model_type, root_node, client_tag));
109 ModelType model_type,
116 EXPECT_TRUE(node.InitUniqueByCreation(model_type, parent_node, client_tag));
124 ModelType model_type,
131 EXPECT_TRUE(node.InitByCreation(model_type, parent_node, predecessor));
140 ModelType model_type) {
142 syncable::AddDefaultExtensionValue(model_type, &specifics)
418 ModelType model_type = local
    [all...]
syncapi.cc 61 #include "chrome/browser/sync/syncable/model_type.h"
187 syncable::ModelType model_type, const std::string& client_tag) {
191 syncable::AddDefaultExtensionValue(model_type, &serialized_type);
715 bool WriteNode::InitByClientTagLookup(syncable::ModelType model_type,
721 const std::string hash = GenerateSyncableHash(model_type, tag);
739 syncable::ModelType model_type = GetModelType();
740 DCHECK_EQ(syncable::NIGORI, model_type);
744 void WriteNode::PutModelType(syncable::ModelType model_type) {
747 DCHECK(GetModelType() == model_type ||
751 syncable::AddDefaultExtensionValue(model_type, &specifics)
1437 syncable::ModelType model_type = b.GetModelType(); local
2349 syncable::ModelType model_type = e.GetModelType(); local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
theme_model_associator.h 11 #include "chrome/browser/sync/syncable/model_type.h"
27 static syncable::ModelType model_type() { return syncable::THEMES; } function in class:browser_sync::ThemeModelAssociator
extension_model_associator.h 12 #include "chrome/browser/sync/syncable/model_type.h"
33 static syncable::ModelType model_type() { return syncable::EXTENSIONS; } function in class:browser_sync::ExtensionModelAssociator
autofill_model_associator.h 48 static syncable::ModelType model_type() { return syncable::AUTOFILL; } function in class:browser_sync::AutofillModelAssociator
preference_model_associator.h 38 static syncable::ModelType model_type() { return syncable::PREFERENCES; } function in class:browser_sync::PreferenceModelAssociator
bookmark_model_associator.h 39 static syncable::ModelType model_type() { return syncable::BOOKMARKS; } function in class:browser_sync::BookmarkModelAssociator
extension_sync_traits.h 9 #include "chrome/browser/sync/syncable/model_type.h"
50 syncable::ModelType model_type,
61 const syncable::ModelType model_type; member in struct:browser_sync::ExtensionSyncTraits
password_model_associator.h 51 static syncable::ModelType model_type() { return syncable::PASSWORDS; } function in class:browser_sync::PasswordModelAssociator
autofill_profile_model_associator.h 57 static syncable::ModelType model_type() { return syncable::AUTOFILL_PROFILE; } function in class:browser_sync::AutofillProfileModelAssociator
typed_url_model_associator.h 56 static syncable::ModelType model_type() { return syncable::TYPED_URLS; } function in class:browser_sync::TypedUrlModelAssociator
session_model_associator.h 28 #include "chrome/browser/sync/syncable/model_type.h"
176 static syncable::ModelType model_type() { return syncable::SESSIONS; } function in class:browser_sync::SessionModelAssociator
  /external/chromium/chrome/browser/sync/syncable/
model_type_unittest.cc 5 #include "chrome/browser/sync/syncable/model_type.h"
32 ModelType model_type = ModelTypeFromInt(i); local
33 ExpectStringValue(ModelTypeToString(model_type),
34 ModelTypeToValue(model_type));
model_type.cc 5 #include "chrome/browser/sync/syncable/model_type.h"
67 ModelType model_type = ModelTypeFromInt(i); local
68 if (GetExtensionFieldNumberFromModelType(model_type) == field_number)
69 return model_type;
75 int GetExtensionFieldNumberFromModelType(ModelType model_type) {
76 switch (model_type) {
187 std::string ModelTypeToString(ModelType model_type) {
188 switch (model_type) {
218 StringValue* ModelTypeToValue(ModelType model_type) {
219 if (model_type >= syncable::FIRST_REAL_MODEL_TYPE)
    [all...]
  /external/chromium/chrome/browser/sync/notifier/
chrome_invalidation_client.cc 15 #include "chrome/browser/sync/syncable/model_type.h"
122 syncable::ModelType model_type; local
123 if (!ObjectIdToRealModelType(invalidation.object_id(), &model_type)) {
142 max_invalidation_versions_.find(model_type);
149 max_invalidation_versions_[model_type] = invalidation.version();
158 types.insert(model_type);
201 syncable::ModelType model_type; local
202 if (!ObjectIdToRealModelType(object_id, &model_type)) {
210 registration_manager_->MarkRegistrationLost(model_type);
registration_manager.h 18 #include "chrome/browser/sync/syncable/model_type.h"
70 // Marks the registration for the |model_type| lost and re-registers
72 void MarkRegistrationLost(syncable::ModelType model_type);
107 // Calls registration_manager->DoRegister(model_type). (needed by
112 syncable::ModelType model_type; member in struct:sync_notifier::RegistrationManager::RegistrationStatus
136 void TryRegisterType(syncable::ModelType model_type,
143 void DoRegisterType(syncable::ModelType model_type);
146 void UnregisterType(syncable::ModelType model_type);
149 bool IsTypeRegistered(syncable::ModelType model_type) const;
registration_manager.cc 13 #include "chrome/browser/sync/syncable/model_type.h"
20 : model_type(syncable::UNSPECIFIED),
27 DCHECK_NE(model_type, syncable::UNSPECIFIED);
33 registration_manager->DoRegisterType(model_type);
51 syncable::ModelType model_type = syncable::ModelTypeFromInt(i); local
52 RegistrationStatus* status = &registration_statuses_[model_type];
53 status->model_type = model_type;
68 syncable::ModelType model_type = syncable::ModelTypeFromInt(i); local
69 if (types.count(model_type) > 0)
93 syncable::ModelType model_type = syncable::ModelTypeFromInt(i); local
105 syncable::ModelType model_type = syncable::ModelTypeFromInt(i); local
119 syncable::ModelType model_type = syncable::ModelTypeFromInt(i); local
138 syncable::ModelType model_type = syncable::ModelTypeFromInt(i); local
    [all...]
registration_manager_unittest.cc 16 #include "chrome/browser/sync/syncable/model_type.h"
25 syncable::ModelType model_type = syncable::UNSPECIFIED; local
26 EXPECT_TRUE(ObjectIdToRealModelType(object_id, &model_type));
27 return model_type;
63 void LoseRegistration(syncable::ModelType model_type) {
64 EXPECT_GT(registered_types_.count(model_type), 0u);
65 registered_types_.erase(model_type);
77 syncable::ModelType model_type = ObjectIdToModelType(oid); local
78 EXPECT_EQ(0u, registered_types_.count(model_type));
79 registered_types_.insert(model_type);
83 syncable::ModelType model_type = ObjectIdToModelType(oid); local
    [all...]
  /external/chromium/chrome/browser/sync/sessions/
session_state_unittest.cc 99 syncable::ModelType model_type = syncable::ModelTypeFromInt(i); local
104 *value, syncable::ModelTypeToString(model_type));
  /external/chromium/chrome/browser/sync/
profile_sync_service.cc 887 syncable::ModelType model_type = syncable::ModelTypeFromInt(i); local
888 if (!registered_types.count(model_type))
890 const char* pref_name = GetPrefNameForDataType(model_type);
894 preferred_types.count(model_type) != 0);
895 if (syncable::AUTOFILL == model_type) {
897 preferred_types.count(model_type) != 0);
918 syncable::ModelType model_type = syncable::ModelTypeFromInt(i); local
919 if (!registered_types.count(model_type))
921 if (model_type == syncable::AUTOFILL_PROFILE)
923 const char* pref_name = GetPrefNameForDataType(model_type);
    [all...]

Completed in 348 milliseconds