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

Unified Diff: components/sync_driver/shared_change_processor_ref.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/shared_change_processor_ref.h
diff --git a/components/sync_driver/shared_change_processor_ref.h b/components/sync_driver/shared_change_processor_ref.h
index b3974cbb5e53f5b8ae209b77b67b5b07667fb2a5..e5dec81ca4420b368e5f890f28e30acce824adff 100644
--- a/components/sync_driver/shared_change_processor_ref.h
+++ b/components/sync_driver/shared_change_processor_ref.h
@@ -11,7 +11,7 @@
#include "sync/api/sync_change_processor.h"
#include "sync/api/sync_error_factory.h"
-namespace browser_sync {
+namespace sync_driver {
// A syncer::SyncChangeProcessor stub for interacting with a refcounted
// SharedChangeProcessor.
@@ -19,7 +19,7 @@ class SharedChangeProcessorRef : public syncer::SyncChangeProcessor,
public syncer::SyncErrorFactory {
public:
SharedChangeProcessorRef(
- const scoped_refptr<browser_sync::SharedChangeProcessor>&
+ const scoped_refptr<SharedChangeProcessor>&
change_processor);
virtual ~SharedChangeProcessorRef();
@@ -42,9 +42,9 @@ class SharedChangeProcessorRef : public syncer::SyncChangeProcessor,
// Default copy and assign welcome (and safe due to refcounted-ness).
private:
- scoped_refptr<browser_sync::SharedChangeProcessor> change_processor_;
+ scoped_refptr<SharedChangeProcessor> change_processor_;
};
-} // namespace browser_sync
+} // namespace sync_driver
#endif // COMPONENTS_SYNC_DRIVER_SHARED_CHANGE_PROCESSOR_H_REF_H_
« no previous file with comments | « components/sync_driver/shared_change_processor.cc ('k') | components/sync_driver/shared_change_processor_ref.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698