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

Unified Diff: chrome/browser/sync/profile_sync_service_unittest.cc

Issue 408003002: [Sync] Fix namespace for sync_driver component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 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: chrome/browser/sync/profile_sync_service_unittest.cc
diff --git a/chrome/browser/sync/profile_sync_service_unittest.cc b/chrome/browser/sync/profile_sync_service_unittest.cc
index 412be896ed9fa6396d4d263b0021ceb60d5f0ede..66725b53a64be5b07797de3d3261d9fda3907e85 100644
--- a/chrome/browser/sync/profile_sync_service_unittest.cc
+++ b/chrome/browser/sync/profile_sync_service_unittest.cc
@@ -45,13 +45,13 @@ namespace browser_sync {
namespace {
ACTION(ReturnNewDataTypeManager) {
- return new browser_sync::DataTypeManagerImpl(base::Closure(),
- arg0,
- arg1,
- arg2,
- arg3,
- arg4,
- arg5);
+ return new sync_driver::DataTypeManagerImpl(base::Closure(),
+ arg0,
+ arg1,
+ arg2,
+ arg3,
+ arg4,
+ arg5);
}
using testing::Return;
@@ -76,7 +76,7 @@ class TestProfileSyncServiceObserver : public ProfileSyncServiceObserver {
// that could happen while backend init is in progress.
class SyncBackendHostNoReturn : public SyncBackendHostMock {
virtual void Initialize(
- SyncFrontend* frontend,
+ sync_driver::SyncFrontend* frontend,
scoped_ptr<base::Thread> sync_thread,
const syncer::WeakHandle<syncer::JsEventHandler>& event_handler,
const GURL& service_url,
@@ -96,7 +96,7 @@ class SyncBackendHostMockCollectDeleteDirParam : public SyncBackendHostMock {
: delete_dir_param_(delete_dir_param) {}
virtual void Initialize(
- SyncFrontend* frontend,
+ sync_driver::SyncFrontend* frontend,
scoped_ptr<base::Thread> sync_thread,
const syncer::WeakHandle<syncer::JsEventHandler>& event_handler,
const GURL& service_url,

Powered by Google App Engine
This is Rietveld 408576698