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

Unified Diff: components/sync/core_impl/model_type_connector_proxy.h

Issue 2388673002: Revert of [Sync] Move //components/sync to the syncer namespace. (patchset #5 id:40001 of https://co (Closed)
Patch Set: Created 4 years, 2 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/core_impl/model_type_connector_proxy.h
diff --git a/components/sync/core_impl/model_type_connector_proxy.h b/components/sync/core_impl/model_type_connector_proxy.h
index 7b233200a0bd6f307362dd8df87b74dfbb491f92..f71f65b2cd2930793840fe0ae12bcc35bb8d1769 100644
--- a/components/sync/core_impl/model_type_connector_proxy.h
+++ b/components/sync/core_impl/model_type_connector_proxy.h
@@ -12,7 +12,7 @@
#include "components/sync/base/model_type.h"
#include "components/sync/core/model_type_connector.h"
-namespace syncer {
+namespace syncer_v2 {
// Proxies all ModelTypeConnector calls to another thread. Typically used by
// the SyncBackend to call from the UI thread to the real ModelTypeConnector on
@@ -26,9 +26,9 @@ class ModelTypeConnectorProxy : public ModelTypeConnector {
// ModelTypeConnector implementation
void ConnectType(
- ModelType type,
+ syncer::ModelType type,
std::unique_ptr<ActivationContext> activation_context) override;
- void DisconnectType(ModelType type) override;
+ void DisconnectType(syncer::ModelType type) override;
private:
// A SequencedTaskRunner representing the thread where the ModelTypeConnector
@@ -39,6 +39,6 @@ class ModelTypeConnectorProxy : public ModelTypeConnector {
base::WeakPtr<ModelTypeConnector> model_type_connector_;
};
-} // namespace syncer
+} // namespace syncer_v2
#endif // COMPONENTS_SYNC_CORE_IMPL_MODEL_TYPE_CONNECTOR_PROXY_H_

Powered by Google App Engine
This is Rietveld 408576698