Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(577)

Unified Diff: components/sync/test/null_directory_change_delegate.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/sync/test/null_directory_change_delegate.cc
diff --git a/sync/test/null_directory_change_delegate.cc b/components/sync/test/null_directory_change_delegate.cc
similarity index 79%
rename from sync/test/null_directory_change_delegate.cc
rename to components/sync/test/null_directory_change_delegate.cc
index e9793ef3003a6ce722def0b7a5e2cf602fb11c66..0e5a0862fef601b9ba25d23c3d3441348c155b8c 100644
--- a/sync/test/null_directory_change_delegate.cc
+++ b/components/sync/test/null_directory_change_delegate.cc
@@ -4,7 +4,7 @@
#include <stdint.h>
-#include "sync/test/null_directory_change_delegate.h"
+#include "components/sync/test/null_directory_change_delegate.h"
namespace syncer {
namespace syncable {
@@ -16,8 +16,8 @@ void NullDirectoryChangeDelegate::HandleCalculateChangesChangeEventFromSyncApi(
BaseTransaction* trans,
std::vector<int64_t>* entries_changed) {
for (EntryKernelMutationMap::const_iterator it =
- write_transaction_info.Get().mutations.Get().begin();
- it != write_transaction_info.Get().mutations.Get().end(); ++it) {
+ write_transaction_info.Get().mutations.Get().begin();
+ it != write_transaction_info.Get().mutations.Get().end(); ++it) {
entries_changed->push_back(it->first);
}
}
@@ -27,8 +27,8 @@ void NullDirectoryChangeDelegate::HandleCalculateChangesChangeEventFromSyncer(
BaseTransaction* trans,
std::vector<int64_t>* entries_changed) {
for (EntryKernelMutationMap::const_iterator it =
- write_transaction_info.Get().mutations.Get().begin();
- it != write_transaction_info.Get().mutations.Get().end(); ++it) {
+ write_transaction_info.Get().mutations.Get().begin();
+ it != write_transaction_info.Get().mutations.Get().end(); ++it) {
entries_changed->push_back(it->first);
}
}
« no previous file with comments | « components/sync/test/null_directory_change_delegate.h ('k') | components/sync/test/null_transaction_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698