HomeSort by relevance Sort by last modified time
    Searched refs:AUTOFILL (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/sync/syncable/
syncable_util_unittest.cc 20 GenerateSyncableHash(AUTOFILL, "tag1"));
27 GenerateSyncableHash(AUTOFILL, "tag2"));
model_type.cc 44 case AUTOFILL:
147 case AUTOFILL:
250 return AUTOFILL;
354 set.Put(AUTOFILL);
471 case AUTOFILL:
472 return "Autofill";
490 return "Autofill Profiles";
550 case AUTOFILL:
643 else if (model_type_string == "Autofill")
644 return AUTOFILL;
    [all...]
syncable_unittest.cc 213 AddDefaultFieldValue(AUTOFILL, &autofill_specs);
215 ModelTypeSet types_to_purge(PREFERENCES, AUTOFILL);
219 dir()->SetDownloadProgress(AUTOFILL, BuildProgress(AUTOFILL));
228 dir()->SetDataTypeContext(&trans, AUTOFILL, BuildContext(AUTOFILL));
233 CreateTypeRoot(&trans, dir().get(), AUTOFILL);
262 MutableEntry item5(&trans, CREATE, AUTOFILL,
  /external/chromium_org/components/sync_driver/
user_selectable_sync_type.h 28 AUTOFILL = 3,
shared_change_processor_unittest.cc 118 syncer::AUTOFILL,
  /external/chromium_org/chrome/browser/sync/
profile_sync_service_model_type_selection_android.h 11 DEFINE_MODEL_TYPE_SELECTION(AUTOFILL, 1<<0)
backend_migrator_unittest.cc 41 preferred_types_.Put(syncer::AUTOFILL);
130 difference.Put(syncer::AUTOFILL);
161 difference.Put(syncer::AUTOFILL);
211 to_migrate2.Put(syncer::AUTOFILL);
213 to_migrate_union.Put(syncer::AUTOFILL);
250 difference.Put(syncer::AUTOFILL);
275 to_migrate.Put(syncer::AUTOFILL);
profile_sync_service_autofill_unittest.cc 24 #include "chrome/browser/autofill/personal_data_manager_factory.h"
43 #include "components/autofill/core/browser/autofill_test_utils.h"
44 #include "components/autofill/core/browser/personal_data_manager.h"
45 #include "components/autofill/core/browser/webdata/autofill_change.h"
46 #include "components/autofill/core/browser/webdata/autofill_entry.h"
47 #include "components/autofill/core/browser/webdata/autofill_profile_syncable_service.h"
48 #include "components/autofill/core/browser/webdata/autofill_table.h"
49 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
68 using autofill::AutofillChange;
69 using autofill::AutofillChangeList
    [all...]
profile_sync_components_factory_impl_unittest.cc 52 datatypes.push_back(syncer::AUTOFILL);
159 TestSwitchDisablesType(syncer::ModelTypeSet(syncer::AUTOFILL));
profile_sync_components_factory_impl.cc 50 #include "components/autofill/core/browser/webdata/autofill_profile_syncable_service.h"
51 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
211 // Autofill sync is enabled by default. Register unless explicitly
213 if (!disabled_types.Has(syncer::AUTOFILL)) {
216 this, profile_, MakeDisableCallbackFor(syncer::AUTOFILL)));
219 // Autofill profile sync is enabled by default. Register unless explicitly
495 case syncer::AUTOFILL:
499 if (type == syncer::AUTOFILL) {
503 return autofill::AutofillProfileSyncableService::FromWebDataService(
profile_sync_service_android.cc 355 if (types.Has(syncer::AUTOFILL)) {
356 model_type_selection |= AUTOFILL;
401 if (model_type_selection & AUTOFILL)
402 types.Put(syncer::AUTOFILL);
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_registrar_unittest.cc 27 using syncer::AUTOFILL;
48 registrar_->ActivateDataType(AUTOFILL,
53 expected_routing_info[AUTOFILL] = syncer::GROUP_DB;
55 ExpectHasProcessorsForTypes(*registrar_, ModelTypeSet(AUTOFILL));
56 TriggerChanges(registrar_.get(), AUTOFILL);
146 const ModelTypeSet types1(BOOKMARKS, NIGORI, AUTOFILL);
153 expected_routing_info[AUTOFILL] = syncer::GROUP_PASSIVE;
224 TriggerChanges(registrar_.get(), AUTOFILL);
237 const ModelTypeSet types(AUTOFILL);
251 registrar_->DeactivateDataType(AUTOFILL);
    [all...]
autofill_data_type_controller.cc 15 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
37 return syncer::AUTOFILL;
66 autofill::AutofillWebDataService* web_data_service =
  /external/chromium_org/sync/sessions/
model_type_registry_unittest.cc 83 routing_info.insert(std::make_pair(AUTOFILL, GROUP_DB));
96 routing_info1.insert(std::make_pair(AUTOFILL, GROUP_PASSIVE));
103 routing_info2.insert(std::make_pair(AUTOFILL, GROUP_DB));
116 routing_info1.insert(std::make_pair(AUTOFILL, GROUP_DB));
132 routing_info1.insert(std::make_pair(AUTOFILL, GROUP_DB));
181 routing_info1.insert(std::make_pair(AUTOFILL, GROUP_DB));
  /external/chromium_org/sync/util/
data_type_histogram.h 48 case ::syncer::AUTOFILL: \
49 PER_DATA_TYPE_MACRO("Autofill"); \
  /external/chromium_org/chrome/browser/sync/test/integration/
enable_disable_test.cc 48 // AUTOFILL_PROFILE is lumped together with AUTOFILL.
62 // AUTOFILL_PROFILE is lumped together with AUTOFILL.
63 if (it.Get() == syncer::AUTOFILL) {
104 // AUTOFILL_PROFILE is lumped together with AUTOFILL.
125 if (it.Get() == syncer::AUTOFILL) {
126 // AUTOFILL_PROFILE is lumped together with AUTOFILL.
sync_errors_test.cc 157 ASSERT_TRUE(GetClient(0)->DisableSyncForDatatype(syncer::AUTOFILL));
164 ASSERT_TRUE(GetClient(0)->EnableSyncForDatatype(syncer::AUTOFILL));
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
ProfileSyncService.java 349 if ((modelTypeSelection & ModelTypeSelection.AUTOFILL) != 0) {
350 syncTypes.add(ModelType.AUTOFILL);
405 if (syncEverything || enabledTypes.contains(ModelType.AUTOFILL)) {
406 modelTypeSelection |= ModelTypeSelection.AUTOFILL;
  /external/chromium_org/sync/engine/
get_updates_processor_unittest.cc 33 AddUpdateHandler(AUTOFILL);
136 BuildInvalidationMap(AUTOFILL, 1, "autofill_payload"));
142 notified_types.Put(AUTOFILL);
344 autofill_handler_ = AddUpdateHandler(AUTOFILL);
348 return ModelTypeSet(AUTOFILL);
  /external/chromium_org/chrome/browser/webdata/
autocomplete_syncable_service.cc 10 #include "components/autofill/core/browser/webdata/autofill_table.h"
11 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
20 using autofill::AutofillChange;
21 using autofill::AutofillChangeList;
22 using autofill::AutofillEntry;
23 using autofill::AutofillKey;
24 using autofill::AutofillTable;
25 using autofill::AutofillWebDataService;
26 using autofill::AutofillWebDataBackend;
182 DCHECK_EQ(syncer::AUTOFILL, type)
254 const sync_pb::AutofillSpecifics& autofill = local
367 sync_pb::AutofillSpecifics* autofill = local
    [all...]
autocomplete_syncable_service.h 19 #include "components/autofill/core/browser/webdata/autofill_change.h"
20 #include "components/autofill/core/browser/webdata/autofill_entry.h"
21 #include "components/autofill/core/browser/webdata/autofill_webdata_backend.h"
22 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
23 #include "components/autofill/core/browser/webdata/autofill_webdata_service_observer.h"
46 public autofill::AutofillWebDataServiceObserverOnDBThread,
54 autofill::AutofillWebDataService* web_data_service,
55 autofill::AutofillWebDataBackend* webdata_backend);
59 autofill::AutofillWebDataService* web_data_service);
61 static syncer::ModelType model_type() { return syncer::AUTOFILL; }
    [all...]
  /external/chromium_org/sync/android/java/src/org/chromium/sync/internal_api/pub/base/
ModelType.java 23 * An autofill object.
25 AUTOFILL("AUTOFILL"),
27 * An autofill profile object.
  /external/chromium_org/sync/tools/testserver/
chromiumsync_test.py 311 autofill = chromiumsync.SYNC_TYPE_FIELDS['autofill']
315 msg.requested_types.autofill.SetInParent()
321 chromiumsync.AUTOFILL: 15412,
338 marker.data_type_id = autofill.number
346 chromiumsync.AUTOFILL: 15412,
354 self.assertEqual(marker.data_type_id, autofill.number)
361 marker.data_type_id = autofill.number
369 chromiumsync.AUTOFILL: 412,
396 marker = self.FindMarkerByNumber(response.new_progress_marker, autofill)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/preferences_private/
preferences_private_apitest.cc 88 type_set.Put(syncer::AUTOFILL);
181 categories->Find(base::StringValue("Autofill"))) <<
  /external/chromium_org/sync/internal_api/public/base/
model_type.h 63 // An autofill object.
64 AUTOFILL,

Completed in 147 milliseconds

1 2