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

Unified Diff: components/sync_driver/data_type_manager_impl.h

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
« no previous file with comments | « components/sync_driver/data_type_manager.cc ('k') | components/sync_driver/data_type_manager_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync_driver/data_type_manager_impl.h
diff --git a/components/sync_driver/data_type_manager_impl.h b/components/sync_driver/data_type_manager_impl.h
index 461ae6b559a143c63f01cb9402bd187ea4fab452..6beb108b049070489c8f219d2d84074110e46bf6 100644
--- a/components/sync_driver/data_type_manager_impl.h
+++ b/components/sync_driver/data_type_manager_impl.h
@@ -25,7 +25,7 @@ class DataTypeDebugInfoListener;
template <typename T> class WeakHandle;
}
-namespace browser_sync {
+namespace sync_driver {
class DataTypeController;
class DataTypeEncryptionHandler;
@@ -161,7 +161,7 @@ class DataTypeManagerImpl : public DataTypeManager,
// For querying failed data types (having unrecoverable error) when
// configuring backend.
- browser_sync::FailedDataTypesHandler* failed_data_types_handler_;
+ FailedDataTypesHandler* failed_data_types_handler_;
// Types waiting to be downloaded.
TypeSetPriorityList download_types_queue_;
@@ -182,7 +182,7 @@ class DataTypeManagerImpl : public DataTypeManager,
// The encryption handler lets the DataTypeManager know the state of sync
// datatype encryption.
- const browser_sync::DataTypeEncryptionHandler* encryption_handler_;
+ const DataTypeEncryptionHandler* encryption_handler_;
// Association and time stats of data type configuration.
std::vector<syncer::DataTypeConfigurationStats> configuration_stats_;
@@ -194,6 +194,6 @@ class DataTypeManagerImpl : public DataTypeManager,
DISALLOW_COPY_AND_ASSIGN(DataTypeManagerImpl);
};
-} // namespace browser_sync
+} // namespace sync_driver
#endif // COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_IMPL_H__
« no previous file with comments | « components/sync_driver/data_type_manager.cc ('k') | components/sync_driver/data_type_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698