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

Unified Diff: components/sync_driver/data_type_manager_observer.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
Index: components/sync_driver/data_type_manager_observer.h
diff --git a/components/sync_driver/data_type_manager_observer.h b/components/sync_driver/data_type_manager_observer.h
index 32d4d6bc5f7323fed6c20e2a21afc6c6850a7481..4e7289d9435a92da3ea8ada98c4c326335fce2fe 100644
--- a/components/sync_driver/data_type_manager_observer.h
+++ b/components/sync_driver/data_type_manager_observer.h
@@ -7,14 +7,14 @@
#include "components/sync_driver/data_type_manager.h"
-namespace browser_sync {
+namespace sync_driver {
// Various data type configuration events can be consumed by observing the
// DataTypeManager through this interface.
class DataTypeManagerObserver {
public:
virtual void OnConfigureDone(
- const browser_sync::DataTypeManager::ConfigureResult& result) = 0;
+ const DataTypeManager::ConfigureResult& result) = 0;
virtual void OnConfigureRetry() = 0;
virtual void OnConfigureStart() = 0;
@@ -22,6 +22,6 @@ class DataTypeManagerObserver {
virtual ~DataTypeManagerObserver() { }
};
-} // namespace browser_sync
+} // namespace sync_driver
#endif // COMPONENTS_SYNC_DRIVER_DATA_TYPE_MANAGER_OBSERVER_H_
« no previous file with comments | « components/sync_driver/data_type_manager_mock.cc ('k') | components/sync_driver/failed_data_types_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698