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

Unified Diff: components/sync/device_info/device_info_data_type_controller.cc

Issue 2376123003: [Sync] Move //components/sync to the syncer namespace. (Closed)
Patch Set: Fix tools and iOS. 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: components/sync/device_info/device_info_data_type_controller.cc
diff --git a/components/sync/device_info/device_info_data_type_controller.cc b/components/sync/device_info/device_info_data_type_controller.cc
index ef58cff95395781a7692b533739827033e2dee76..f005b3de639a12dddf203f6a4923f22250485635 100644
--- a/components/sync/device_info/device_info_data_type_controller.cc
+++ b/components/sync/device_info/device_info_data_type_controller.cc
@@ -7,13 +7,13 @@
#include "base/callback.h"
#include "components/sync/device_info/local_device_info_provider.h"
-namespace sync_driver {
+namespace syncer {
DeviceInfoDataTypeController::DeviceInfoDataTypeController(
const base::Closure& dump_stack,
SyncClient* sync_client,
LocalDeviceInfoProvider* local_device_info_provider)
- : UIDataTypeController(syncer::DEVICE_INFO, dump_stack, sync_client),
+ : UIDataTypeController(DEVICE_INFO, dump_stack, sync_client),
local_device_info_provider_(local_device_info_provider) {}
DeviceInfoDataTypeController::~DeviceInfoDataTypeController() {}
@@ -46,4 +46,4 @@ void DeviceInfoDataTypeController::OnLocalDeviceInfoLoaded() {
OnModelLoaded();
}
-} // namespace sync_driver
+} // namespace syncer

Powered by Google App Engine
This is Rietveld 408576698