HomeSort by relevance Sort by last modified time
    Searched refs:specifics (Results 26 - 50 of 168) sorted by null

12 3 4 5 6 7

  /external/chromium_org/chrome/browser/webdata/
autofill_profile_syncable_service.cc 320 const sync_pb::AutofillProfileSpecifics& specifics,
324 if (profile->origin() != specifics.origin()) {
326 profile->set_origin(specifics.origin());
334 specifics.name_first(), profile) || diff;
336 specifics.name_middle(), profile) || diff;
338 specifics.name_last(), profile) || diff;
340 specifics.address_home_line1(), profile) || diff;
342 specifics.address_home_line2(), profile) || diff;
344 specifics.address_home_city(), profile) || diff;
346 specifics.address_home_state(), profile) || diff
369 sync_pb::AutofillProfileSpecifics* specifics = local
447 const sync_pb::EntitySpecifics& specifics = data.GetSpecifics(); local
561 sync_pb::EntitySpecifics specifics; local
    [all...]
  /external/chromium_org/sync/engine/
conflict_resolver.cc 73 // an undecryptable update that only changed specifics, and since then have
74 // not received any further non-specifics-only or decryptable updates.
75 // d) If the server_specifics match specifics, server_specifics are
110 const sync_pb::EntitySpecifics& specifics = local
111 entry.Get(syncable::SPECIFICS);
119 if (specifics.has_encrypted()) {
120 DCHECK(cryptographer->CanDecryptUsingDefaultKey(specifics.encrypted()));
122 specifics.encrypted());
124 decrypted_specifics = specifics.SerializeAsString();
136 server_encrypted_with_default_key == specifics.has_encrypted())
    [all...]
apply_updates_and_resolve_conflicts_command_unittest.cc 332 sync_pb::EntitySpecifics specifics; local
337 specifics.mutable_password()->mutable_encrypted());
338 entry_factory_->CreateUnappliedNewItem("item", specifics, false);
375 sync_pb::EntitySpecifics specifics; local
386 specifics.mutable_password()->mutable_encrypted());
388 entry_factory_->CreateUnappliedNewItem("item1", specifics, false);
396 sync_pb::EntitySpecifics specifics; local
401 specifics.mutable_password()->mutable_encrypted());
402 entry_factory_->CreateUnappliedNewItem("item2", specifics, false);
  /external/chromium_org/chrome/browser/notifications/sync_notifier/
chrome_notifier_service.cc 228 // Construct the sync_data using the specifics from the notification.
239 sync_pb::SyncedNotificationSpecifics specifics = local
243 if (!specifics.has_coalesced_notification() ||
244 !specifics.coalesced_notification().has_key() ||
245 !specifics.coalesced_notification().has_read_state()) {
248 << specifics.has_coalesced_notification()
249 << " has key? " << specifics.coalesced_notification().has_key()
251 << specifics.coalesced_notification().has_read_state();
257 specifics.coalesced_notification().read_state()) ==
259 specifics.coalesced_notification().has_render_info())
    [all...]
  /external/chromium_org/chrome/browser/sync/
abstract_profile_sync_service_test.cc 35 int64 node_id, const sync_pb::EntitySpecifics& specifics) {
39 record.specifics = specifics;
abstract_profile_sync_service_test.h 37 const sync_pb::EntitySpecifics& specifics);
  /external/chromium_org/sync/internal_api/public/
change_record.h 58 sync_pb::EntitySpecifics specifics; member in struct:syncer::ChangeRecord
change_record_unittest.cc 64 EntitySpecificsToValue(record.specifics));
66 value, "specifics");
89 record.specifics = old_specifics;
100 record.specifics = old_specifics;
111 record.specifics = old_specifics;
121 record.specifics = old_specifics;
  /external/chromium_org/sync/test/engine/
test_syncable_utils.cc 87 sync_pb::EntitySpecifics specifics; local
88 syncer::AddDefaultFieldValue(type, &specifics);
89 node.Put(syncable::SERVER_SPECIFICS, specifics);
90 node.Put(syncable::SPECIFICS, specifics);
  /external/chromium/chrome/browser/sync/engine/
apply_updates_command_unittest.cc 75 const sync_pb::EntitySpecifics& specifics,
88 entry.Put(syncable::SERVER_SPECIFICS, specifics);
119 entry.Put(syncable::SPECIFICS, default_specifics);
232 sync_pb::EntitySpecifics specifics; local
237 specifics.MutableExtension(sync_pb::password)->mutable_encrypted());
238 CreateUnappliedNewItem("item", specifics, false);
254 sync_pb::EntitySpecifics specifics; local
255 specifics.MutableExtension(sync_pb::password);
256 CreateUnappliedNewItem("item", specifics, false);
273 sync_pb::EntitySpecifics specifics; local
297 sync_pb::EntitySpecifics specifics; local
337 sync_pb::EntitySpecifics specifics; local
344 specifics, true); local
405 sync_pb::EntitySpecifics specifics; local
412 specifics, true); local
502 sync_pb::EntitySpecifics specifics; local
509 specifics, true); local
    [all...]
change_reorder_buffer.h 75 void SetSpecificsForId(int64 id, const sync_pb::EntitySpecifics& specifics) {
76 specifics_[id] = specifics;
syncapi.h 279 // Returns the unencrypted specifics associated with |entry|. If |entry| was
282 // This method is invoked by the datatype specific Get<datatype>Specifics
359 // Set the bookmark specifics (url and favicon).
361 void SetBookmarkSpecifics(const sync_pb::BookmarkSpecifics& specifics);
369 // Set the app specifics (id, update url, enabled state, etc).
371 void SetAppSpecifics(const sync_pb::AppSpecifics& specifics);
373 // Set the autofill specifics (name and value).
375 void SetAutofillSpecifics(const sync_pb::AutofillSpecifics& specifics);
378 const sync_pb::AutofillProfileSpecifics& specifics);
380 // Set the nigori specifics
649 sync_pb::EntitySpecifics specifics; member in struct:sync_api::SyncManager::ChangeRecord
    [all...]
  /external/chromium_org/sync/syncable/
nigori_util.cc 40 const sync_pb::EntitySpecifics& specifics = entry.Get(SPECIFICS); local
43 if (!SpecificsNeedsEncryption(encrypted_types, specifics))
45 if (!UpdateEntryWithEncryption(trans, specifics, &entry))
78 return SpecificsNeedsEncryption(encrypted_types, entry.Get(SPECIFICS)) ||
84 const sync_pb::EntitySpecifics& specifics) {
85 const ModelType type = GetModelTypeFromSpecifics(specifics);
90 return !specifics.has_encrypted();
129 const sync_pb::EntitySpecifics& specifics = child.Get(SPECIFICS); local
    [all...]
nigori_util.h 52 // Same as EntryNeedsEncryption, but looks at specifics.
55 const sync_pb::EntitySpecifics& specifics);
65 // Note: gracefully handles new_specifics aliasing with entry->Get(SPECIFICS).
  /external/chromium_org/chrome/browser/extensions/
app_sync_data.h 60 void PopulateAppSpecifics(sync_pb::AppSpecifics* specifics) const;
64 const sync_pb::AppSpecifics& specifics);
extension_sync_data.h 43 void PopulateExtensionSpecifics(sync_pb::ExtensionSpecifics* specifics) const;
47 const sync_pb::ExtensionSpecifics& specifics);
  /external/chromium_org/sync/api/
sync_change_unittest.cc 39 sync_pb::EntitySpecifics specifics; local
40 sync_pb::PreferenceSpecifics* pref_specifics = specifics.mutable_preference();
46 SyncData::CreateLocalData(tag, title, specifics));
51 scoped_ptr<base::DictionaryValue> ref_spec(EntitySpecificsToValue(specifics));
59 sync_pb::EntitySpecifics specifics; local
60 sync_pb::PreferenceSpecifics* pref_specifics = specifics.mutable_preference();
66 SyncData::CreateLocalData(tag, title, specifics));
71 scoped_ptr<base::DictionaryValue> ref_spec(EntitySpecificsToValue(specifics));
sync_data.h 40 // For adds/updates: the specifics must be valid and the non-unique title (can
50 const sync_pb::EntitySpecifics& specifics);
55 const sync_pb::EntitySpecifics& specifics,
63 // datatype specifics.
66 // Return the current sync datatype specifics.
  /external/chromium_org/sync/internal_api/test/
test_entry_factory.cc 33 const sync_pb::EntitySpecifics& specifics,
45 entry.Put(syncable::SERVER_SPECIFICS, specifics);
51 const sync_pb::EntitySpecifics& specifics,
63 entry.Put(syncable::SERVER_SPECIFICS, specifics);
70 const sync_pb::EntitySpecifics& specifics,
81 entry.Put(syncable::SERVER_SPECIFICS, specifics);
84 ModelTypeToRootTag(GetModelTypeFromSpecifics(specifics)));
113 entry.Put(syncable::SPECIFICS, default_specifics);
173 entry.Put(syncable::SERVER_SPECIFICS, entry.Get(syncable::SPECIFICS));
181 sync_pb::EntitySpecifics specifics; local
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
session_change_processor.cc 231 DCHECK_EQ(syncer::GetModelTypeFromSpecifics(it->specifics),
233 const sync_pb::SessionSpecifics& specifics = it->specifics.session(); local
234 if (specifics.session_tag() == local_tag) {
241 if (specifics.has_header()) {
246 specifics.session_tag());
264 const sync_pb::SessionSpecifics& specifics(
266 if (specifics.session_tag() == local_tag &&
276 session_model_associator_->AssociateForeignSpecifics(specifics, mtime);
typed_url_model_associator.h 105 const sync_pb::TypedUrlSpecifics& specifics);
150 sync_pb::TypedUrlSpecifics* specifics);
162 // Updates the passed |url_row| based on the values in |specifics|. Fields
163 // that are not contained in |specifics| (such as typed_count) are left
166 const sync_pb::TypedUrlSpecifics& specifics, history::URLRow* url_row);
  /external/chromium/chrome/browser/sync/
abstract_profile_sync_service_test.cc 35 using syncable::SPECIFICS;
91 sync_pb::EntitySpecifics specifics; local
92 syncable::AddDefaultExtensionValue(model_type, &specifics);
93 node.Put(SPECIFICS, specifics);
  /external/chromium_org/sync/internal_api/
change_record.cc 44 value->Set("specifics", EntitySpecificsToValue(specifics));
change_reorder_buffer.h 53 void SetSpecificsForId(int64 id, const sync_pb::EntitySpecifics& specifics);
  /external/chromium/chrome/browser/sync/syncable/
model_type.h 86 sync_pb::EntitySpecifics* specifics);
91 // entity specifics.
97 ModelType GetModelTypeFromSpecifics(const sync_pb::EntitySpecifics& specifics);

Completed in 1290 milliseconds

12 3 4 5 6 7