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

1 2

  /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);
  /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
  /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));
  /external/chromium_org/chrome/browser/themes/
theme_syncable_service.h 30 static syncer::ModelType model_type() { return syncer::THEMES; } function in class:ThemeSyncableService
  /external/chromium_org/chrome/browser/webdata/
autocomplete_syncable_service.h 60 static syncer::ModelType model_type() { return syncer::AUTOFILL; } function in class:AutocompleteSyncableService
  /external/chromium_org/sync/engine/
sync_directory_update_handler.cc 138 ModelType model_type = GetModelTypeFromSpecificsFieldNumber(field_number); local
139 if (!IsRealDataType(model_type) || type_ != model_type) {
  /external/chromium_org/sync/internal_api/public/
data_type_debug_info_listener.h 10 #include "sync/internal_api/public/base/model_type.h"
20 ModelType model_type; member in struct:syncer::DataTypeConfigurationStats
  /external/chromium_org/sync/syncable/
model_type_unittest.cc 5 #include "sync/internal_api/public/base/model_type.h"
21 ModelType model_type = ModelTypeFromInt(i); local
22 base::ExpectStringValue(ModelTypeToString(model_type),
23 ModelTypeToValue(model_type));
33 ModelType model_type = ModelTypeFromInt(i); local
34 scoped_ptr<StringValue> value(ModelTypeToValue(model_type));
35 EXPECT_EQ(model_type, ModelTypeFromValue(*value));
  /external/chromium_org/chrome/browser/history/
typed_url_syncable_service.h 43 static syncer::ModelType model_type() { return syncer::TYPED_URLS; } function in class:history::TypedUrlSyncableService
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_model_associator.h 39 static syncer::ModelType model_type() { return syncer::BOOKMARKS; } function in class:browser_sync::BookmarkModelAssociator
password_model_associator.h 50 static syncer::ModelType model_type() { return syncer::PASSWORDS; } function in class:browser_sync::PasswordModelAssociator
  /external/chromium_org/sync/api/
sync_error.cc 11 #include "sync/internal_api/public/base/model_type.h"
22 ModelType model_type) {
41 Init(location, type_message + custom_message, model_type, error_type);
64 other.model_type(),
80 ModelType model_type) {
81 Init(location, message, model_type, DATATYPE_ERROR);
87 ModelType model_type,
91 model_type_ = model_type;
110 ModelType SyncError::model_type() const { function in class:syncer::SyncError
sync_merge_result.cc 24 DCHECK(!error.IsSet() || model_type_ == error.model_type());
54 ModelType SyncMergeResult::model_type() const { function in class:syncer::SyncMergeResult

Completed in 570 milliseconds

1 2