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

Unified Diff: chrome/browser/sync/glue/sync_backend_registrar_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/glue/sync_backend_registrar_unittest.cc
diff --git a/chrome/browser/sync/glue/sync_backend_registrar_unittest.cc b/chrome/browser/sync/glue/sync_backend_registrar_unittest.cc
index ccc072f7fee045a10e6b6d917dab141d1c062ac4..cd2d29ddf4edfdb88cc9ecefb6feab6cab9e8586 100644
--- a/chrome/browser/sync/glue/sync_backend_registrar_unittest.cc
+++ b/chrome/browser/sync/glue/sync_backend_registrar_unittest.cc
@@ -43,7 +43,7 @@ void TriggerChanges(SyncBackendRegistrar* registrar, ModelType type) {
class SyncBackendRegistrarTest : public testing::Test {
public:
- void TestNonUIDataTypeActivationAsync(ChangeProcessor* processor,
+ void TestNonUIDataTypeActivationAsync(sync_driver::ChangeProcessor* processor,
base::WaitableEvent* done) {
registrar_->ActivateDataType(AUTOFILL,
syncer::GROUP_DB,
@@ -182,7 +182,7 @@ TEST_F(SyncBackendRegistrarTest, ActivateDeactivateUIDataType) {
// Should do nothing.
TriggerChanges(registrar_.get(), BOOKMARKS);
- StrictMock<ChangeProcessorMock> change_processor_mock;
+ StrictMock<sync_driver::ChangeProcessorMock> change_processor_mock;
EXPECT_CALL(change_processor_mock, StartImpl());
EXPECT_CALL(change_processor_mock, IsRunning())
.WillRepeatedly(Return(true));
@@ -223,7 +223,7 @@ TEST_F(SyncBackendRegistrarTest, ActivateDeactivateNonUIDataType) {
// Should do nothing.
TriggerChanges(registrar_.get(), AUTOFILL);
- StrictMock<ChangeProcessorMock> change_processor_mock;
+ StrictMock<sync_driver::ChangeProcessorMock> change_processor_mock;
EXPECT_CALL(change_processor_mock, StartImpl());
EXPECT_CALL(change_processor_mock, IsRunning())
.WillRepeatedly(Return(true));
« no previous file with comments | « chrome/browser/sync/glue/sync_backend_registrar.cc ('k') | chrome/browser/sync/glue/synced_device_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698