/external/chromium/chrome/browser/sync/glue/ |
data_type_controller.h | 15 #include "chrome/browser/sync/syncable/model_type.h" 59 typedef std::map<syncable::ModelType, 61 typedef std::map<syncable::ModelType, DataTypeController::State> StateMap; 78 virtual syncable::ModelType type() const = 0;
|
autofill_profile_data_type_controller.cc | 22 syncable::ModelType AutofillProfileDataTypeController::type() const { 23 return syncable::AUTOFILL_PROFILE;
|
sync_backend_host.h | 28 #include "chrome/browser/sync/syncable/model_type.h" 96 const syncable::ModelTypeSet& encrypted_types) = 0; 100 const syncable::ModelTypeSet& types) = 0; 136 const syncable::ModelTypeSet& types, 168 const syncable::ModelTypeSet& types, 180 const syncable::ModelTypeSet& encrypted_types); 182 syncable::AutofillMigrationState 186 syncable::AutofillMigrationState state); 188 syncable::AutofillMigrationDebugInfo 192 syncable::AutofillMigrationDebugInfo::PropertyToSet property_to_set [all...] |
data_type_manager_impl2_unittest.cc | 17 #include "chrome/browser/sync/syncable/model_type.h" 85 EXPECT_CALL(*dtc, type()).WillRepeatedly(Return(syncable::BOOKMARKS)); 93 EXPECT_CALL(*dtc, type()).WillRepeatedly(Return(syncable::PREFERENCES)); 106 EXPECT_CALL(*dtc, type()).WillRepeatedly(Return(syncable::PASSWORDS)); 165 std::set<syncable::ModelType> types_; 181 controllers_[syncable::BOOKMARKS] = bookmark_dtc; 184 types_.insert(syncable::BOOKMARKS); 197 controllers_[syncable::BOOKMARKS] = bookmark_dtc; 200 types_.insert(syncable::BOOKMARKS); 212 controllers_[syncable::BOOKMARKS] = bookmark_dtc [all...] |
autofill_profile_data_type_controller.h | 22 virtual syncable::ModelType type() const;
|
data_type_manager_mock.cc | 11 : result_(OK, FROM_HERE, syncable::ModelTypeSet()) {
|
/external/chromium/chrome/browser/sync/notifier/ |
non_blocking_invalidation_notifier_unittest.cc | 11 #include "chrome/browser/sync/syncable/model_type.h" 12 #include "chrome/browser/sync/syncable/model_type_payload_map.h" 61 syncable::ModelTypeSet types; 62 types.insert(syncable::BOOKMARKS); 63 types.insert(syncable::AUTOFILL);
|
invalidation_notifier_unittest.cc | 10 #include "chrome/browser/sync/syncable/model_type.h" 11 #include "chrome/browser/sync/syncable/model_type_payload_map.h" 59 syncable::ModelTypePayloadMap type_payloads; 60 type_payloads[syncable::PREFERENCES] = "payload"; 61 type_payloads[syncable::BOOKMARKS] = ""; 62 type_payloads[syncable::AUTOFILL] = "";
|
sync_notifier.h | 28 #include "chrome/browser/sync/syncable/model_type.h" 50 virtual void UpdateEnabledTypes(const syncable::ModelTypeSet& types) = 0;
|
/external/chromium_org/sync/internal_api/ |
sync_encryption_handler_impl.h | 19 #include "sync/syncable/nigori_handler.h" 47 public syncable::NigoriHandler { 71 syncable::BaseTransaction* const trans) OVERRIDE; 74 syncable::BaseTransaction* const trans) const OVERRIDE; 76 syncable::BaseTransaction* const trans) const OVERRIDE; 79 syncable::BaseTransaction* const trans) OVERRIDE; 82 syncable::BaseTransaction* const trans) const OVERRIDE; 149 syncable::BaseTransaction* const trans); 168 syncable::BaseTransaction* const trans); 210 syncable::BaseTransaction* const trans) [all...] |
/external/chromium/chrome/browser/sync/ |
backend_migrator.h | 10 #include "chrome/browser/sync/syncable/model_type.h" 40 void MigrateTypes(const syncable::ModelTypeSet& types); 60 syncable::ModelTypeSet to_migrate_;
|
js_sync_manager_observer.cc | 14 #include "chrome/browser/sync/syncable/model_type.h" 26 syncable::ModelType model_type, 32 syncable::ModelTypeToString(model_type))); 43 syncable::ModelType model_type) { 46 syncable::ModelTypeToString(model_type))); 94 const syncable::ModelTypeSet& encrypted_types) { 96 return_args.Append(syncable::ModelTypeSetToValue(encrypted_types)); 102 const syncable::ModelTypeSet& types) { 104 return_args.Append(syncable::ModelTypeSetToValue(types));
|
profile_sync_service_harness.cc | 93 : waiting_for_encryption_type_(syncable::UNSPECIFIED), 129 syncable::ModelTypeSet synced_datatypes; 130 for (int i = syncable::FIRST_REAL_MODEL_TYPE; 131 i < syncable::MODEL_TYPE_COUNT; ++i) { 132 synced_datatypes.insert(syncable::ModelTypeFromInt(i)); 138 const syncable::ModelTypeSet& synced_datatypes) { 166 (syncable::MODEL_TYPE_COUNT - syncable::FIRST_REAL_MODEL_TYPE)); 463 syncable::ModelTypeSet types, other_types, intersection_types; 470 for (syncable::ModelTypeSet::iterator i = intersection_types.begin() [all...] |
/external/chromium/chrome/browser/sync/engine/ |
change_reorder_buffer.cc | 13 #include "chrome/browser/sync/syncable/syncable.h" 23 // Traversal provides a way to collect a set of nodes from the syncable 38 void ExpandToInclude(syncable::BaseTransaction* trans, 50 syncable::Entry node(trans, syncable::GET_BY_HANDLE, node_to_include); 52 if (node.Get(syncable::ID).IsRoot()) { 58 top_ = node.Get(syncable::META_HANDLE); 61 syncable::Entry parent(trans, syncable::GET_BY_ID [all...] |
process_updates_command.cc | 15 #include "chrome/browser/sync/syncable/directory_manager.h" 16 #include "chrome/browser/sync/syncable/syncable.h" 38 syncable::ScopedDirLookup dir(session->context()->directory_manager(), 75 bool ReverifyEntry(syncable::WriteTransaction* trans, const SyncEntity& entry, 76 syncable::MutableEntry* same_id) { 80 const syncable::ModelType model_type = entry.GetModelType(); 93 const syncable::ScopedDirLookup& dir, 97 using namespace syncable; 98 syncable::Id server_id = update.id() [all...] |
syncer.cc | 28 #include "chrome/browser/sync/syncable/directory_manager.h" 29 #include "chrome/browser/sync/syncable/syncable-inl.h" 30 #include "chrome/browser/sync/syncable/syncable.h" 34 using syncable::Blob; 35 using syncable::IS_UNAPPLIED_UPDATE; 36 using syncable::SERVER_CTIME; 37 using syncable::SERVER_IS_DEL; 38 using syncable::SERVER_IS_DIR [all...] |
download_updates_command.h | 12 #include "chrome/browser/sync/syncable/model_type.h" 24 // in the syncable::Directory, and the set of enabled types as indicated by 46 void SetRequestedTypes(const syncable::ModelTypeBitSet& target_datatypes,
|
/external/chromium/chrome/browser/sync/syncable/ |
nigori_util.h | 12 #include "chrome/browser/sync/syncable/model_type.h" 18 namespace syncable { namespace 51 const syncable::ModelTypeSet& encrypted_types, 60 } // namespace syncable
|
directory_change_listener.h | 9 #include "chrome/browser/sync/syncable/model_type.h" 10 #include "chrome/browser/sync/syncable/syncable.h" 12 namespace syncable { namespace 15 // the releasing of the syncable transaction. The listener performs work to 40 } // namespace syncable
|
syncable_columns.h | 9 #include "chrome/browser/sync/syncable/syncable.h" 10 #include "chrome/browser/sync/syncable/syncable_changes_version.h" 12 namespace syncable { namespace 19 // Must be in exact same order as fields in syncable. 71 } // namespace syncable
|
/external/chromium_org/sync/engine/ |
syncer_proto_util.h | 16 #include "sync/syncable/blob.h" 36 namespace syncable { namespace in namespace:syncer 63 // Utility methods for converting between syncable::Blobs and protobuf byte 66 syncable::Blob* blob); 68 const syncable::Blob& blob); 69 static void CopyBlobIntoProtoBytes(const syncable::Blob& blob, 82 syncable::Directory* dir, 100 static void AddRequestBirthday(syncable::Directory* dir, 104 static void AddBagOfChips(syncable::Directory* dir, 120 syncable::Directory* dir) [all...] |
sync_directory_commit_contribution.cc | 10 #include "sync/syncable/model_neutral_mutable_entry.h" 11 #include "sync/syncable/syncable_model_neutral_write_transaction.h" 15 using syncable::GET_BY_HANDLE; 16 using syncable::SYNCER; 24 syncable::Directory* dir, 29 syncable::ModelNeutralWriteTransaction trans(FROM_HERE, SYNCER, dir); 39 syncable::ModelNeutralMutableEntry entry(&trans, GET_BY_HANDLE, *it); 68 std::set<syncable::Id> deleted_folders; 70 syncable::ModelNeutralWriteTransaction trans(FROM_HERE, SYNCER, dir_); 90 syncable::Entry e(&trans, GET_BY_HANDLE, metahandles_[i]) [all...] |
sync_directory_commit_contributor.cc | 12 syncable::Directory* dir,
|
/external/chromium_org/sync/internal_api/public/ |
read_node.h | 18 // ReadNode wraps a syncable::Entry to provide the functionality of a 46 virtual const syncable::Entry* GetEntry() const OVERRIDE; 55 // The underlying syncable object which this class wraps. 56 syncable::Entry* entry_;
|
/external/chromium_org/sync/syncable/ |
parent_child_index.h | 15 namespace syncable { namespace in namespace:syncer 54 typedef std::map<syncable::Id, OrderedChildSet*> ParentChildrenMap; 63 } // namespace syncable
|