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

1 2 3 4 5 6 7 8

  /external/chromium_org/chrome/browser/extensions/
extension_sync_data.cc 65 sync_pb::EntitySpecifics specifics; local
66 PopulateExtensionSpecifics(specifics.mutable_extension());
68 return syncer::SyncData::CreateLocalData(id_, name_, specifics);
77 sync_pb::ExtensionSpecifics* specifics) const {
79 specifics->set_id(id_);
80 specifics->set_update_url(update_url_.spec());
81 specifics->set_version(version_.GetString());
82 specifics->set_enabled(enabled_);
83 specifics->set_incognito_enabled(incognito_enabled_);
84 specifics->set_remote_install(remote_install_)
    [all...]
app_sync_data.cc 50 sync_pb::EntitySpecifics specifics; local
51 PopulateAppSpecifics(specifics.mutable_app());
55 specifics);
63 void AppSyncData::PopulateAppSpecifics(sync_pb::AppSpecifics* specifics) const {
64 DCHECK(specifics);
67 specifics->set_app_launch_ordinal(app_launch_ordinal_.ToInternalValue());
69 specifics->set_page_ordinal(page_ordinal_.ToInternalValue());
78 specifics->set_launch_type(sync_launch_type);
82 specifics->set_bookmark_app_url(bookmark_app_url_);
85 specifics->set_bookmark_app_description(bookmark_app_description_)
    [all...]
  /external/chromium_org/components/dom_distiller/core/
article_entry.cc 34 ArticleEntry EntryFromSpecifics(const EntitySpecifics& specifics) {
35 DCHECK(specifics.has_article());
36 const ArticleSpecifics& article_specifics = specifics.article();
44 EntitySpecifics specifics; local
45 *specifics.mutable_article() = entry;
46 return specifics;
58 const ArticleSpecifics& specifics = entity.article(); local
59 DCHECK(specifics.has_entry_id());
60 return specifics.entry_id();
64 EntitySpecifics specifics = SpecificsFromEntry(entry) local
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/storage/
setting_sync_data.cc 30 sync_pb::EntitySpecifics specifics = sync_data.GetSpecifics(); local
32 DCHECK_NE(specifics.has_extension_setting(),
33 specifics.has_app_setting());
34 if (specifics.has_extension_setting()) {
37 specifics.extension_setting());
38 } else if (specifics.has_app_setting()) {
41 specifics.app_setting().extension_setting());
47 const sync_pb::ExtensionSettingSpecifics& specifics) {
50 base::JSONReader::Read(specifics.value()));
52 LOG(WARNING) << "Specifics for " << specifics.extension_id() << "/" <
    [all...]
settings_sync_util.cc 28 sync_pb::ExtensionSettingSpecifics* specifics) {
29 specifics->set_extension_id(extension_id);
30 specifics->set_key(key);
34 specifics->set_value(value_as_json);
42 sync_pb::AppSettingSpecifics* specifics) {
44 extension_id, key, value, specifics->mutable_extension_setting());
54 sync_pb::EntitySpecifics specifics; local
61 specifics.mutable_extension_setting());
69 specifics.mutable_app_setting());
77 extension_id + "/" + key, key, specifics);
    [all...]
  /external/chromium_org/sync/internal_api/public/
write_node.h 114 // Set the bookmark specifics (url and favicon).
116 void SetBookmarkSpecifics(const sync_pb::BookmarkSpecifics& specifics);
118 // Generic set specifics method. Will extract the model type from |specifics|.
119 void SetEntitySpecifics(const sync_pb::EntitySpecifics& specifics);
128 // Set the app specifics (id, update url, enabled state, etc).
130 void SetAppSpecifics(const sync_pb::AppSpecifics& specifics);
132 // Set the autofill specifics (name and value).
134 void SetAutofillSpecifics(const sync_pb::AutofillSpecifics& specifics);
137 const sync_pb::AutofillProfileSpecifics& specifics);
    [all...]
delete_journal.h 21 sync_pb::EntitySpecifics specifics; member in struct:syncer::BookmarkDeleteJournal
  /external/chromium_org/sync/syncable/
nigori_util_unittest.cc 21 sync_pb::EntitySpecifics specifics; local
22 EXPECT_FALSE(SpecificsNeedsEncryption(ModelTypeSet(), specifics));
23 EXPECT_FALSE(SpecificsNeedsEncryption(encrypted_types, specifics));
25 AddDefaultFieldValue(PREFERENCES, &specifics);
26 EXPECT_FALSE(SpecificsNeedsEncryption(encrypted_types, specifics));
model_type.cc 29 sync_pb::EntitySpecifics* specifics) {
36 specifics->mutable_bookmark();
39 specifics->mutable_password();
42 specifics->mutable_preference();
45 specifics->mutable_autofill();
48 specifics->mutable_autofill_profile();
51 specifics->mutable_theme();
54 specifics->mutable_typed_url();
57 specifics->mutable_extension();
60 specifics->mutable_nigori()
    [all...]
  /external/chromium_org/sync/test/fake_server/
unique_client_entity.cc 30 syncer::GetModelTypeFromSpecifics(client_entity.specifics());
37 client_entity.specifics(),
46 syncer::GetModelTypeFromSpecifics(entity.specifics()),
56 const sync_pb::EntitySpecifics& specifics,
61 specifics_(specifics),
74 sync_pb::EntitySpecifics* specifics = proto->mutable_specifics(); local
75 specifics->CopyFrom(specifics_);
tombstone_entity.cc 38 sync_pb::EntitySpecifics* specifics = proto->mutable_specifics(); local
39 AddDefaultFieldValue(FakeServerEntity::GetModelType(), specifics); local
bookmark_entity.cc 49 client_entity.specifics(),
78 client_entity.specifics(),
92 const sync_pb::EntitySpecifics& specifics,
101 specifics_(specifics),
114 sync_pb::EntitySpecifics* specifics = proto->mutable_specifics(); local
115 specifics->CopyFrom(specifics_);
  /external/chromium_org/sync/engine/
entity_tracker_unittest.cc 33 specifics.mutable_preference()->set_name(kClientTag);
34 specifics.mutable_preference()->set_value("pref.value");
44 sync_pb::EntitySpecifics specifics; member in class:syncer::EntityTrackerTest
68 specifics));
81 EXPECT_EQ(specifics.preference().name(),
82 pb_entity.specifics().preference().name());
83 EXPECT_EQ(specifics.preference().value(),
84 pb_entity.specifics().preference().value());
100 specifics);
120 specifics);
    [all...]
model_type_entity.cc 12 const sync_pb::EntitySpecifics& specifics,
21 syncable::GenerateSyncableHash(GetModelTypeFromSpecifics(specifics),
24 specifics,
36 const sync_pb::EntitySpecifics& specifics,
49 specifics,
64 const sync_pb::EntitySpecifics& specifics,
77 specifics_(specifics),
110 const sync_pb::EntitySpecifics& specifics,
120 specifics_ = specifics;
125 const sync_pb::EntitySpecifics& specifics) {
    [all...]
model_type_entity.h 37 const sync_pb::EntitySpecifics& specifics,
46 const sync_pb::EntitySpecifics& specifics,
82 const sync_pb::EntitySpecifics& specifics,
87 void MakeLocalChange(const sync_pb::EntitySpecifics& specifics);
132 const sync_pb::EntitySpecifics& specifics,
184 // up-to-date specifics, whether it be from the server or a locally modified
model_type_sync_worker_impl.cc 150 const sync_pb::EntitySpecifics& specifics = update_entity->specifics(); local
152 if (!specifics.has_encrypted()) {
155 response_data.specifics = specifics;
157 } else if (specifics.has_encrypted() && cryptographer_ &&
158 cryptographer_->CanDecrypt(specifics.encrypted())) {
161 cryptographer_.get(), specifics, &response_data.specifics)) {
163 response_data.encryption_key_name = specifics.encrypted().key_name()
    [all...]
  /external/chromium_org/sync/internal_api/
delete_journal.cc 26 const sync_pb::EntitySpecifics& specifics = (*i)->ref( local
27 syncer::syncable::SPECIFICS);
28 if (!specifics.has_encrypted()) {
29 delete_journal_list->back().specifics = specifics;
32 specifics.encrypted());
40 delete_journal_list->back().specifics = unencrypted_data;
base_node.cc 31 using syncable::SPECIFICS;
50 const sync_pb::EntitySpecifics& specifics = local
52 if (specifics.has_password()) {
55 specifics, GetTransaction()->GetCryptographer()));
57 LOG(ERROR) << "Failed to decrypt password specifics.";
67 // we fill the unencrypted_data_ with a copy of the bookmark specifics that
69 if (!specifics.has_encrypted()) {
71 !specifics.bookmark().has_title() &&
79 unencrypted_data_.CopyFrom(specifics);
86 const sync_pb::EncryptedData& encrypted = specifics.encrypted()
111 const sync_pb::EntitySpecifics& specifics = entry->GetSpecifics(); local
    [all...]
  /external/chromium_org/sync/internal_api/public/test/
test_entry_factory.h 29 const sync_pb::EntitySpecifics& specifics,
34 const sync_pb::EntitySpecifics& specifics,
39 const sync_pb::EntitySpecifics& specifics,
70 // the server specifics with |specifics|, sets
74 const sync_pb::EntitySpecifics specifics);
77 // the local specifics with |specifics|, sets
81 const sync_pb::EntitySpecifics specifics);
84 // specifics
    [all...]
  /external/chromium_org/chrome/browser/sync/sessions/
sessions_sync_manager.cc 122 sync_pb::EntitySpecifics specifics; local
123 sync_pb::SessionSpecifics* base_specifics = specifics.mutable_session();
129 current_machine_tag(), current_session_name_, specifics);
157 sync_pb::SessionSpecifics specifics; local
158 specifics.set_session_tag(local_tag);
159 sync_pb::SessionHeader* header_s = specifics.mutable_header();
256 // if the entity specifics are identical (i.e windows, client name did
259 entity.mutable_session()->CopyFrom(specifics);
316 sync_pb::EntitySpecifics specifics; local
317 LocalTabDelegateToSpecifics(*tab, specifics.mutable_session())
448 sync_pb::SessionSpecifics* specifics = entity.mutable_session(); local
567 const sync_pb::SessionSpecifics& specifics = data.GetSpecifics().session(); local
916 sync_pb::SessionSpecifics* specifics = entity.mutable_session(); local
    [all...]
  /external/chromium_org/sync/api/
sync_data_unittest.cc 41 sync_pb::EntitySpecifics specifics; member in class:syncer::__anon15364::SyncDataTest
61 specifics.mutable_preference();
63 SyncData::CreateLocalData(kSyncTag, kNonUniqueTitle, specifics);
73 specifics.mutable_preference();
80 kSyncTag, kNonUniqueTitle, specifics, attachment_ids);
92 specifics.mutable_preference();
95 kSyncTag, kNonUniqueTitle, specifics, attachment_ids);
106 specifics.mutable_preference();
108 specifics,
sync_data.cc 82 sync_pb::EntitySpecifics specifics; local
83 AddDefaultFieldValue(datatype, &specifics);
84 return CreateLocalData(sync_tag, std::string(), specifics);
90 const sync_pb::EntitySpecifics& specifics) {
93 sync_tag, non_unique_title, specifics, attachment_ids);
100 const sync_pb::EntitySpecifics& specifics,
106 entity.mutable_specifics()->CopyFrom(specifics);
120 const sync_pb::EntitySpecifics& specifics,
126 entity.mutable_specifics()->CopyFrom(specifics);
137 return immutable_entity_.Get().specifics();
157 std::string specifics; local
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_profile_syncable_service.cc 315 const sync_pb::AutofillProfileSpecifics& specifics,
319 if (specifics.has_origin() && profile->origin() != specifics.origin()) {
321 profile->set_origin(specifics.origin());
330 specifics.name_first(), profile) || diff;
332 specifics.name_middle(), profile) || diff;
334 specifics.name_last(), profile) || diff;
337 if (specifics.name_full().size() > 0) {
339 specifics.name_full(), profile) || diff;
342 specifics.email_address(), profile) || diff
399 sync_pb::AutofillProfileSpecifics* specifics = local
490 const sync_pb::EntitySpecifics& specifics = data.GetSpecifics(); local
606 sync_pb::EntitySpecifics specifics; local
    [all...]
  /external/chromium_org/components/sync_driver/
device_info_sync_service.cc 285 sync_pb::DeviceInfoSpecifics& specifics = *entity.mutable_device_info(); local
287 specifics.set_cache_guid(info->guid());
288 specifics.set_client_name(info->client_name());
289 specifics.set_chrome_version(info->chrome_version());
290 specifics.set_sync_user_agent(info->sync_user_agent());
291 specifics.set_device_type(info->device_type());
292 specifics.set_signin_scoped_device_id(info->signin_scoped_device_id());
295 specifics.set_backup_timestamp(local_device_backup_time());
303 const sync_pb::DeviceInfoSpecifics& specifics = entity.device_info(); local
306 base::StringPrintf("DeviceInfo_%s", specifics.cache_guid().c_str())
314 const sync_pb::DeviceInfoSpecifics& specifics = local
    [all...]
  /external/chromium_org/sync/protocol/
proto_value_conversions_unittest.cc 48 const T& specifics(T::default_instance());
49 scoped_ptr<base::DictionaryValue> value(specifics_to_value(specifics));
92 sync_pb::PasswordSpecificsData specifics; local
93 specifics.set_password_value("secret");
95 PasswordSpecificsDataToValue(specifics));
111 sync_pb::AppNotificationSettings specifics; local
112 specifics.set_disabled(true);
113 specifics.set_oauth_client_id("some_id_value");
114 scoped_ptr<base::DictionaryValue> value(AppSettingsToValue(specifics));
143 sync_pb::BookmarkSpecifics specifics; local
270 sync_pb::EntitySpecifics specifics; local
    [all...]

Completed in 463 milliseconds

1 2 3 4 5 6 7 8