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

Unified Diff: chrome/browser/ui/webui/sync_internals_ui_unittest.cc

Issue 2354613002: [Sync] Fix namespaces for the browser_sync component. (Closed)
Patch Set: Address comments. Created 4 years, 3 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/ui/webui/sync_internals_ui_unittest.cc
diff --git a/chrome/browser/ui/webui/sync_internals_ui_unittest.cc b/chrome/browser/ui/webui/sync_internals_ui_unittest.cc
index ad6da727a6f5241a5d4fced44e60c3c59d3853f7..1e3075ff96f9152c6cfb2b9861264f6daaaeca13 100644
--- a/chrome/browser/ui/webui/sync_internals_ui_unittest.cc
+++ b/chrome/browser/ui/webui/sync_internals_ui_unittest.cc
@@ -63,7 +63,7 @@ class SyncInternalsUITestWithService : public ChromeRenderViewHostTestHarness {
virtual void SetUp() {
NiceMock<ProfileMock>* profile_mock = new NiceMock<ProfileMock>();
- StrictMock<ProfileSyncServiceMock> profile_sync_service_mock;
+ StrictMock<browser_sync::ProfileSyncServiceMock> profile_sync_service_mock;
EXPECT_CALL(*profile_mock, GetProfileSyncService())
.WillOnce(Return(&profile_sync_service_mock));
browser_context_.reset(profile_mock);
@@ -150,7 +150,7 @@ class SyncInternalsUITestWithoutService
virtual void SetUp() {
NiceMock<ProfileMock>* profile_mock = new NiceMock<ProfileMock>();
EXPECT_CALL(*profile_mock, GetProfileSyncService())
- .WillOnce(Return(static_cast<ProfileSyncService*>(NULL)));
+ .WillOnce(Return(static_cast<browser_sync::ProfileSyncService*>(NULL)));
browser_context_.reset(profile_mock);
ChromeRenderViewHostTestHarness::SetUp();

Powered by Google App Engine
This is Rietveld 408576698