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

Unified Diff: chrome/browser/sync/glue/shared_change_processor_unittest.cc

Issue 10662035: [Sync] Put everything in sync/api into csync namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix comments Created 8 years, 6 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: chrome/browser/sync/glue/shared_change_processor_unittest.cc
diff --git a/chrome/browser/sync/glue/shared_change_processor_unittest.cc b/chrome/browser/sync/glue/shared_change_processor_unittest.cc
index 1cb6d81c65d159996a090ca4ffae21cbe3d4334c..db2b7b6f50dd194d46ff4d4f53e79a3a8dde7a28 100644
--- a/chrome/browser/sync/glue/shared_change_processor_unittest.cc
+++ b/chrome/browser/sync/glue/shared_change_processor_unittest.cc
@@ -86,7 +86,7 @@ class SyncSharedChangeProcessorTest : public testing::Test {
void SetUpDBSyncableService() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
DCHECK(!db_syncable_service_.get());
- db_syncable_service_.reset(new FakeSyncableService());
+ db_syncable_service_.reset(new csync::FakeSyncableService());
}
// Used by TearDown().
@@ -120,7 +120,7 @@ class SyncSharedChangeProcessorTest : public testing::Test {
StrictMock<DataTypeErrorHandlerMock> error_handler_;
// Used only on DB thread.
- scoped_ptr<FakeSyncableService> db_syncable_service_;
+ scoped_ptr<csync::FakeSyncableService> db_syncable_service_;
};
// Simply connect the shared change processor. It should succeed, and

Powered by Google App Engine
This is Rietveld 408576698