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

Unified Diff: components/sync/driver/about_sync_util_unittest.cc

Issue 2376123003: [Sync] Move //components/sync to the syncer namespace. (Closed)
Patch Set: Rebase. 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
« no previous file with comments | « components/sync/driver/about_sync_util.cc ('k') | components/sync/driver/backend_data_type_configurer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/driver/about_sync_util_unittest.cc
diff --git a/components/sync/driver/about_sync_util_unittest.cc b/components/sync/driver/about_sync_util_unittest.cc
index e6e7ac5f5316b9e6c2b9532b323cafb5f27c48b8..3c41a414fdfa4b6b99feeb757338f9fddc37d62a 100644
--- a/components/sync/driver/about_sync_util_unittest.cc
+++ b/components/sync/driver/about_sync_util_unittest.cc
@@ -15,26 +15,24 @@ using ::testing::NiceMock;
using ::testing::Return;
using ::testing::_;
-namespace sync_driver {
+namespace syncer {
namespace sync_ui_util {
namespace {
-class SyncServiceMock : public sync_driver::FakeSyncService {
+class SyncServiceMock : public FakeSyncService {
public:
bool IsFirstSetupComplete() const override { return true; }
bool HasUnrecoverableError() const override { return true; }
- bool QueryDetailedSyncStatus(syncer::SyncStatus* result) override {
- return false;
- }
+ bool QueryDetailedSyncStatus(SyncStatus* result) override { return false; }
base::string16 GetLastSyncedTimeString() const override {
return base::string16(base::ASCIIToUTF16("none"));
}
- syncer::SyncCycleSnapshot GetLastCycleSnapshot() const override {
- return syncer::SyncCycleSnapshot();
+ SyncCycleSnapshot GetLastCycleSnapshot() const override {
+ return SyncCycleSnapshot();
}
};
@@ -49,4 +47,4 @@ TEST(SyncUIUtilTestAbout, ConstructAboutInformationWithUnrecoverableErrorTest) {
} // namespace
} // namespace sync_ui_util
-} // namespace sync_driver
+} // namespace syncer
« no previous file with comments | « components/sync/driver/about_sync_util.cc ('k') | components/sync/driver/backend_data_type_configurer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698