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

  /external/chromium/chrome/browser/sync/syncable/
nigori_util_unittest.cc 14 ModelTypeSet encrypted_types; local
15 FillNigoriEncryptedTypes(encrypted_types, &nigori);
17 EXPECT_EQ(encrypted_types, test_types);
20 encrypted_types.insert(ModelTypeFromInt(i));
22 FillNigoriEncryptedTypes(encrypted_types, &nigori);
24 encrypted_types.erase(syncable::NIGORI); // Should not get set.
25 encrypted_types.erase(syncable::PASSWORDS); // Should not get set.
26 EXPECT_EQ(encrypted_types, test_types);
28 encrypted_types.erase(syncable::BOOKMARKS);
29 encrypted_types.erase(syncable::SESSIONS)
    [all...]
nigori_util.h 38 // |encrypted_types|.
45 const ModelTypeSet& encrypted_types);
48 // or unencrypted, based on |encrypted_types|.
51 const syncable::ModelTypeSet& encrypted_types,
nigori_util.cc 38 ModelTypeSet encrypted_types; local
40 encrypted_types.insert(BOOKMARKS);
42 encrypted_types.insert(PREFERENCES);
44 encrypted_types.insert(AUTOFILL_PROFILE);
46 encrypted_types.insert(AUTOFILL);
48 encrypted_types.insert(THEMES);
50 encrypted_types.insert(TYPED_URLS);
52 encrypted_types.insert(EXTENSIONS);
54 encrypted_types.insert(SESSIONS);
56 encrypted_types.insert(APPS)
    [all...]
  /external/chromium/chrome/browser/sync/glue/
theme_model_associator.cc 99 syncable::ModelTypeSet encrypted_types; local
100 sync_service_->GetEncryptedDataTypes(&encrypted_types);
101 return encrypted_types.count(syncable::THEMES) == 0 ||
extension_model_associator.cc 63 const syncable::ModelTypeSet& encrypted_types = local
65 return encrypted_types.count(traits_.model_type) == 0 ||
sync_backend_host.h 96 const syncable::ModelTypeSet& encrypted_types) = 0;
180 const syncable::ModelTypeSet& encrypted_types);
288 const syncable::ModelTypeSet& encrypted_types);
366 void DoEncryptDataTypes(const syncable::ModelTypeSet& encrypted_types);
471 encrypted_types);
preference_model_associator.cc 332 syncable::ModelTypeSet encrypted_types; local
333 sync_service_->GetEncryptedDataTypes(&encrypted_types);
334 return encrypted_types.count(syncable::PREFERENCES) == 0 ||
sync_backend_host.cc 475 const syncable::ModelTypeSet& encrypted_types) {
479 encrypted_types));
579 const syncable::ModelTypeSet& encrypted_types) {
583 host_->frontend_->OnEncryptionComplete(encrypted_types);
777 const syncable::ModelTypeSet& encrypted_types) {
779 syncapi_->EncryptDataTypes(encrypted_types);
    [all...]
autofill_model_associator.cc 584 syncable::ModelTypeSet encrypted_types; local
585 sync_service_->GetEncryptedDataTypes(&encrypted_types);
586 return encrypted_types.count(syncable::AUTOFILL) == 0 ||
autofill_profile_model_associator.cc 510 syncable::ModelTypeSet encrypted_types; local
511 sync_service_->GetEncryptedDataTypes(&encrypted_types);
512 return encrypted_types.count(syncable::AUTOFILL_PROFILE) == 0 ||
typed_url_model_associator.cc 493 syncable::ModelTypeSet encrypted_types; local
494 sync_service_->GetEncryptedDataTypes(&encrypted_types);
495 return encrypted_types.count(syncable::TYPED_URLS) == 0 ||
bookmark_model_associator.cc 555 const syncable::ModelTypeSet& encrypted_types = local
557 return encrypted_types.count(syncable::BOOKMARKS) == 0 ||
session_model_associator.cc 998 syncable::ModelTypeSet encrypted_types; local
    [all...]
  /external/chromium/chrome/browser/sync/engine/
apply_updates_command_unittest.cc 322 syncable::ModelTypeSet encrypted_types; local
327 EXPECT_EQ(encrypted_types, GetEncryptedDataTypes(&trans));
342 encrypted_types.insert(syncable::BOOKMARKS);
366 syncable::ModelTypeSet encrypted_types; local
371 EXPECT_EQ(encrypted_types, GetEncryptedDataTypes(&trans));
375 // With empty encrypted_types, this should be true.
376 EXPECT_TRUE(VerifyUnsyncedChangesAreEncrypted(&trans, encrypted_types));
410 encrypted_types.insert(syncable::BOOKMARKS);
421 EXPECT_FALSE(VerifyUnsyncedChangesAreEncrypted(&trans, encrypted_types));
447 EXPECT_EQ(encrypted_types, GetEncryptedDataTypes(&trans))
460 syncable::ModelTypeSet encrypted_types; local
    [all...]
syncapi_unittest.cc 1062 ModelTypeSet encrypted_types; local
1118 ModelTypeSet encrypted_types; local
    [all...]
syncapi.cc 440 syncable::ModelTypeSet encrypted_types = local
442 if (encrypted_types.count(type) == 0) {
1800 syncable::ModelTypeSet encrypted_types = local
2098 syncable::ModelTypeSet encrypted_types = local
2491 syncable::ModelTypeSet encrypted_types = local
    [all...]
syncapi.h     [all...]
syncer_util.cc 306 syncable::ModelTypeSet encrypted_types = local
308 if (!VerifyUnsyncedChangesAreEncrypted(trans, encrypted_types) &&
310 !syncable::ProcessUnsyncedChangesForEncryption(trans, encrypted_types,
    [all...]
  /external/chromium/chrome/browser/sync/
js_sync_manager_observer.h 41 const syncable::ModelTypeSet& encrypted_types);
js_sync_manager_observer.cc 94 const syncable::ModelTypeSet& encrypted_types) {
96 return_args.Append(syncable::ModelTypeSetToValue(encrypted_types));
profile_sync_service_harness.cc 604 syncable::ModelTypeSet encrypted_types; local
605 service_->GetEncryptedDataTypes(&encrypted_types);
606 if (encrypted_types.count(type) > 0)
608 encrypted_types.insert(type);
609 service_->EncryptDataTypes(encrypted_types);
627 syncable::ModelTypeSet encrypted_types; local
628 service_->GetEncryptedDataTypes(&encrypted_types);
629 if (encrypted_types.count(type) == 0) {
js_sync_manager_observer_unittest.cc 152 syncable::ModelTypeSet encrypted_types; local
158 encrypted_types.insert(type);
167 sync_manager_observer_.OnEncryptionComplete(encrypted_types);
profile_sync_service.h 200 const syncable::ModelTypeSet& encrypted_types);
447 const syncable::ModelTypeSet& encrypted_types);
451 syncable::ModelTypeSet* encrypted_types) const;
profile_sync_service.cc 662 const syncable::ModelTypeSet& encrypted_types) {
663 if (encrypted_types_ != encrypted_types) {
664 encrypted_types_ = encrypted_types;
    [all...]
  /external/chromium/chrome/browser/resources/sync_internals/
chrome_sync.js 191 function onEncryptionComplete(encrypted_types) {
192 chrome.sync.onEncryptionComplete.dispatch_(encrypted_types);

Completed in 439 milliseconds