Searched defs:changes (Results 51 - 75 of 151) sorted by relevance

1234567

/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_sync_service_unittest.cc56 const SyncChangeList& changes() const { return change_list_; } function in class:__anon4749::MockChangeProcessor
167 EXPECT_EQ(0u, change_processor()->changes().size());
277 EXPECT_EQ(1u, change_processor()->changes().size());
/external/chromium_org/chrome/browser/sync/glue/
H A Dsync_backend_registrar.cc246 const syncer::ImmutableChangeRecordList& changes) {
251 processor->ApplyChangesFromSyncModel(trans, model_version, changes);
260 // already buffered any changes it plans to makes so needs no
303 // drop changes on the floor (since model association has not
242 OnChangesApplied( syncer::ModelType model_type, int64 model_version, const syncer::BaseTransaction* trans, const syncer::ImmutableChangeRecordList& changes) argument
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dlocal_file_sync_context_unittest.cc83 FileChangeList* changes,
85 ASSERT_TRUE(changes != NULL);
94 base::Unretained(this), metadata, changes, snapshot));
101 FileChangeList* changes,
104 metadata, changes, snapshot);
114 FileChangeList* changes,
119 url, sync_mode, metadata, changes, snapshot);
132 *changes_out = sync_file_info.changes;
148 FileChangeList changes; local
152 &metadata, &changes, NUL
79 StartPrepareForSync(FileSystemContext* file_system_context, const FileSystemURL& url, LocalFileSyncContext::SyncMode sync_mode, SyncFileMetadata* metadata, FileChangeList* changes, storage::ScopedFile* snapshot) argument
97 PrepareForSync(FileSystemContext* file_system_context, const FileSystemURL& url, LocalFileSyncContext::SyncMode sync_mode, SyncFileMetadata* metadata, FileChangeList* changes, storage::ScopedFile* snapshot) argument
109 GetPrepareForSyncClosure( FileSystemContext* file_system_context, const FileSystemURL& url, LocalFileSyncContext::SyncMode sync_mode, SyncFileMetadata* metadata, FileChangeList* changes, storage::ScopedFile* snapshot) argument
249 FileChangeList changes; local
301 FileChangeList changes; local
474 FileChangeList changes; local
560 FileChangeList changes; local
[all...]
H A Dlocal_file_sync_service_unittest.cc57 const FileChangeList& changes) {
62 ASSERT_TRUE(changes.empty());
95 ACTION_P2(MockStatusCallbackAndRecordChange, status, changes) {
98 changes->push_back(arg0);
480 std::vector<FileChange> changes; local
483 .WillOnce(MockStatusCallbackAndRecordChange(SYNC_STATUS_OK, &changes))
484 .WillOnce(MockStatusCallbackAndRecordChange(SYNC_STATUS_OK, &changes));
497 EXPECT_EQ(2U, changes.size());
499 changes[0]); local
502 changes[ local
51 DidPrepareForProcessRemoteChange(const tracked_objects::Location& where, const base::Closure& oncompleted, SyncStatusCode expected_status, const SyncFileMetadata& expected_metadata, SyncStatusCode status, const SyncFileMetadata& metadata, const FileChangeList& changes) argument
570 std::vector<FileChange> changes; local
604 SetOriginChangeCount(const GURL& origin, int64 changes) argument
[all...]
H A Dlocal_file_change_tracker.cc38 // A database class that stores local file changes in a local database. This
137 // Mildly prioritizes the URLs that older changes and have not been updated
148 const FileSystemURL& url, FileChangeList* changes) {
150 DCHECK(changes);
151 changes->clear();
158 *changes = found->second.change_list;
432 FileChangeMap* changes,
434 ChangeInfo& info = (*changes)[url];
439 changes->erase(url);
147 GetChangesForURL( const FileSystemURL& url, FileChangeList* changes) argument
428 RecordChangeToChangeMaps( const FileSystemURL& url, const FileChange& change, int new_change_seq, FileChangeMap* changes, ChangeSeqMap* change_seqs) argument
H A Dlocal_file_sync_service.cc42 callback.Run(status, sync_file_info.metadata, sync_file_info.changes);
85 const GURL& origin, int64 changes) {
86 if (changes != 0) {
87 change_count_map_[origin] = changes;
242 // before the remote changes for the origin are removed.
372 // We have remaining changes for the origin.
432 if (sync_file_info.changes.empty()) {
440 FileChange next_change = sync_file_info.changes.front();
451 next_change, sync_file_info.changes.PopAndGetNewList()));
458 const FileChangeList& changes,
84 SetOriginChangeCount( const GURL& origin, int64 changes) argument
454 ProcessNextChangeForURL( storage::ScopedFile snapshot, const LocalFileSyncInfo& sync_file_info, const FileChange& processed_change, const FileChangeList& changes, SyncStatusCode status) argument
[all...]
/external/chromium_org/chrome/browser/themes/
H A Dtheme_syncable_service.cc137 // generates multiple changes. When we fix syncapi to not do that,
141 string err_msg = base::StringPrintf("Received %d theme changes: ",
330 syncer::SyncChangeList changes; local
334 changes.push_back(
341 << changes.back().ToString();
343 return sync_processor_->ProcessSyncChanges(FROM_HERE, changes);
H A Dtheme_syncable_service_unittest.cc358 // Set up theme service to use default theme and expect no changes.
392 const syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
393 ASSERT_EQ(1u, changes.size());
394 EXPECT_TRUE(changes[0].IsValid());
395 EXPECT_EQ(syncer::SyncChange::ACTION_ADD, changes[0].change_type());
396 EXPECT_EQ(syncer::THEMES, changes[0].sync_data().GetDataType());
399 changes[0].sync_data().GetSpecifics().theme();
487 const syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
521 const syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
561 const syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
593 syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
645 const syncer::SyncChangeList& changes = fake_change_processor_->changes(); local
[all...]
/external/chromium_org/chrome/browser/ui/passwords/
H A Dmanage_passwords_ui_controller.cc133 const password_manager::PasswordStoreChangeList& changes) {
136 changes.begin();
137 it != changes.end();
132 OnLoginsChanged( const password_manager::PasswordStoreChangeList& changes) argument
/external/chromium_org/chrome/browser/webdata/
H A Dautocomplete_syncable_service.cc284 const AutofillChangeList& changes) {
291 ActOnChanges(changes);
382 const AutofillChangeList& changes) {
385 for (AutofillChangeList::const_iterator change = changes.begin();
386 change != changes.end(); ++change) {
283 AutofillEntriesChanged( const AutofillChangeList& changes) argument
381 ActOnChanges( const AutofillChangeList& changes) argument
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_profile_syncable_service_unittest.cc114 const syncer::SyncChangeList& changes) OVERRIDE {
115 changes_ = changes;
124 const syncer::SyncChangeList& changes() { return changes_; } function in class:autofill::__anon6348::TestSyncChangeProcessor
569 ASSERT_EQ(1U, sync_change_processor->changes().size());
570 syncer::SyncChange result = sync_change_processor->changes()[0];
589 ASSERT_EQ(1U, sync_change_processor->changes().size());
590 syncer::SyncChange result = sync_change_processor->changes()[0];
759 // Set up expectations: No changes to the WebDB, and all fields correctly
783 // changes propagated to Sync.
960 // Expect no changes t
[all...]
H A Dautofill_webdata_backend_impl.cc86 AutofillChangeList changes; local
88 fields, &changes)) {
98 AutofillEntriesChanged(changes));
129 AutofillChangeList changes; local
132 delete_begin, delete_end, &changes)) {
133 if (!changes.empty()) {
139 AutofillEntriesChanged(changes));
151 AutofillChangeList changes; local
152 changes.push_back(
158 AutofillEntriesChanged(changes));
365 AutofillChangeList changes; local
[all...]
/external/chromium_org/components/dom_distiller/core/
H A Ddom_distiller_store.cc205 void DomDistillerStore::NotifyObservers(const syncer::SyncChangeList& changes) { argument
206 if (observers_.might_have_observers() && changes.size() > 0) {
208 for (SyncChangeList::const_iterator it = changes.begin();
209 it != changes.end(); ++it) {
236 void DomDistillerStore::ApplyChangesToModel(const SyncChangeList& changes, argument
239 model_.ApplyChangesToModel(changes, changes_applied, changes_missing);
H A Ddom_distiller_store_unittest.cc70 const syncer::SyncChangeList& changes) OVERRIDE {
71 for (SyncChangeList::const_iterator it = changes.begin();
72 it != changes.end(); ++it) {
394 SyncChangeList changes; local
395 changes.push_back(SyncChange(FROM_HERE, SyncChange::ACTION_ADD,
397 changes.push_back(SyncChange(FROM_HERE, SyncChange::ACTION_ADD,
400 store_->ProcessSyncChanges(FROM_HERE, changes);
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_store.cc241 const PasswordStoreChangeList& changes) {
243 if (!changes.empty()) {
244 observers_->Notify(&Observer::OnLoginsChanged, changes);
247 syncable_service_->ActOnPasswordStoreChanges(changes);
264 PasswordStoreChangeList changes = task.Run(); local
265 NotifyLoginsChanged(changes);
240 NotifyLoginsChanged( const PasswordStoreChangeList& changes) argument
H A Dpassword_syncable_service.cc232 "Failed to process sync changes for passwords datatype.");
304 PasswordStoreChangeList changes; local
307 &changes);
310 &changes);
313 &changes);
316 // we use internal password store interfaces to make changes synchronously.
317 password_store_->NotifyLoginsChanged(changes);
/external/chromium_org/extensions/browser/value_store/
H A Dleveldb_value_store.cc180 scoped_ptr<ValueStoreChangeList> changes(new ValueStoreChangeList());
182 AddToBatch(options, key, value, &batch, changes.get());
188 : MakeWriteResult(changes.Pass());
200 scoped_ptr<ValueStoreChangeList> changes(new ValueStoreChangeList());
205 AddToBatch(options, it.key(), it.value(), &batch, changes.get());
212 : MakeWriteResult(changes.Pass());
229 scoped_ptr<ValueStoreChangeList> changes(new ValueStoreChangeList());
240 changes->push_back(ValueStoreChange(*it, old_value.release(), NULL));
248 return MakeWriteResult(changes.Pass());
254 scoped_ptr<ValueStoreChangeList> changes(ne
370 AddToBatch( ValueStore::WriteOptions options, const std::string& key, const base::Value& value, leveldb::WriteBatch* batch, ValueStoreChangeList* changes) argument
[all...]
/external/chromium_org/mojo/services/public/cpp/view_manager/tests/
H A Dview_unittest.cc344 Changes changes; local
345 changes_.swap(changes);
346 return changes;
395 OrderChangeObserver::Changes changes = observer.GetAndClearChanges(); local
396 EXPECT_EQ(2U, changes.size());
397 EXPECT_EQ(&v11, changes[0].view);
398 EXPECT_EQ(&v13, changes[0].relative_view);
399 EXPECT_EQ(ORDER_DIRECTION_ABOVE, changes[0].direction);
401 EXPECT_EQ(&v11, changes[1].view);
402 EXPECT_EQ(&v13, changes[
415 OrderChangeObserver::Changes changes = observer.GetAndClearChanges(); local
435 OrderChangeObserver::Changes changes = observer.GetAndClearChanges(); local
455 OrderChangeObserver::Changes changes = observer.GetAndClearChanges(); local
491 Changes changes; local
533 Changes changes = observer.GetAndClearChanges(); local
[all...]
/external/chromium_org/mojo/services/view_manager/
H A Dtest_change_tracker.cc87 const std::vector<Change>& changes) {
88 std::vector<std::string> strings(changes.size());
89 for (size_t i = 0; i < changes.size(); ++i)
90 strings[i] = ChangeToDescription1(changes[i]);
94 std::string ChangeViewDescription(const std::vector<Change>& changes) { argument
95 if (changes.size() != 1)
97 std::vector<std::string> view_strings(changes[0].views.size());
98 for (size_t i = 0; i < changes[0].views.size(); ++i)
99 view_strings[i] = "[" + changes[0].views[i].ToString() + "]";
86 ChangesToDescription1( const std::vector<Change>& changes) argument
/external/chromium_org/net/cert/
H A Dcrl_set_storage.cc103 // header's "DeltaFrom" value. The delta describes the changes to each CRL
207 // kMaxUncompressedChangesLength is the largest changes array that we'll
249 std::vector<uint8> changes; local
250 if (!ReadChanges(data, &changes))
254 for (std::vector<uint8>::const_iterator k = changes.begin();
255 k != changes.end(); ++k) {
/external/chromium_org/ui/views/widget/desktop_aura/
H A Dx11_topmost_window_finder_interactive_uitest.cc156 XWindowChanges changes = {0}; local
157 changes.x = bounds.x();
158 changes.y = bounds.y();
159 changes.width = bounds.width();
160 changes.height = bounds.height();
164 &changes); local
/external/deqp/framework/platform/X11/
H A DtcuX11.cpp217 XWindowChanges changes; local
218 changes.width = width;
219 changes.height = height;
221 XConfigureWindow(m_display.getXDisplay(), m_window, mask, &changes);
/external/chromium_org/chrome/browser/extensions/api/bookmark_manager_private/
H A Dbookmark_manager_private_api.cc208 bookmark_manager_private::MetaInfoFields changes; local
215 changes.additional_properties[it->first] = "";
220 changes.additional_properties[it->first] = "";
222 changes.additional_properties[it->first] = new_meta_field->second;
235 changes.additional_properties[it->first] = it->second;
242 base::Int64ToString(node->id()), changes));
/external/chromium_org/chrome/browser/extensions/api/storage/
H A Dsettings_sync_unittest.cc91 // SyncChangeProcessor which just records the changes made, accessed after
92 // being converted to the more useful SettingSyncData via changes().
122 const SettingSyncDataList& changes() { return changes_; } function in class:extensions::__anon3827::MockSyncChangeProcessor
144 ADD_FAILURE() << "No matching changes for " << extension_id << "/" <<
153 ADD_FAILURE() << matching_changes.size() << " matching changes for " <<
299 EXPECT_EQ(0u, sync_processor_->changes().size());
337 // Already in sync, so no changes.
338 EXPECT_EQ(0u, sync_processor_->changes().size());
343 EXPECT_EQ(0u, sync_processor_->changes().size());
346 EXPECT_EQ(1u, sync_processor_->changes()
[all...]
/external/chromium_org/chrome/browser/password_manager/
H A Dnative_backend_gnome_x.cc574 password_manager::PasswordStoreChangeList changes; local
582 changes.push_back(password_manager::PasswordStoreChange(
587 changes.push_back(password_manager::PasswordStoreChange(
590 return changes;
595 password_manager::PasswordStoreChangeList* changes) {
603 DCHECK(changes);
604 changes->clear();
631 changes->push_back(change);
658 password_manager::PasswordStoreChangeList* changes) {
660 delete_begin, delete_end, CREATION_TIMESTAMP, changes);
593 UpdateLogin( const PasswordForm& form, password_manager::PasswordStoreChangeList* changes) argument
655 RemoveLoginsCreatedBetween( base::Time delete_begin, base::Time delete_end, password_manager::PasswordStoreChangeList* changes) argument
663 RemoveLoginsSyncedBetween( base::Time delete_begin, base::Time delete_end, password_manager::PasswordStoreChangeList* changes) argument
763 RemoveLoginsBetween( base::Time get_begin, base::Time get_end, TimestampToCompare date_to_compare, password_manager::PasswordStoreChangeList* changes) argument
[all...]

Completed in 1759 milliseconds

1234567