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

Unified Diff: components/sync/engine/sync_manager.h

Issue 2413313004: [Sync] Move the last things out of core/. (Closed)
Patch Set: Address comments. 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
« no previous file with comments | « components/sync/engine/sync_encryption_handler.cc ('k') | components/sync/engine/sync_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/engine/sync_manager.h
diff --git a/components/sync/core/sync_manager.h b/components/sync/engine/sync_manager.h
similarity index 96%
rename from components/sync/core/sync_manager.h
rename to components/sync/engine/sync_manager.h
index 9df691638439b9a09b7125791da46c6999f82384..71bfcdc845f54d1b2fd1b2929386300cd4b1755d 100644
--- a/components/sync/core/sync_manager.h
+++ b/components/sync/engine/sync_manager.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef COMPONENTS_SYNC_CORE_SYNC_MANAGER_H_
-#define COMPONENTS_SYNC_CORE_SYNC_MANAGER_H_
+#ifndef COMPONENTS_SYNC_ENGINE_SYNC_MANAGER_H_
+#define COMPONENTS_SYNC_ENGINE_SYNC_MANAGER_H_
#include <stdint.h>
@@ -19,15 +19,15 @@
#include "components/sync/base/invalidation_interface.h"
#include "components/sync/base/model_type.h"
#include "components/sync/base/weak_handle.h"
-#include "components/sync/core/configure_reason.h"
-#include "components/sync/core/connection_status.h"
-#include "components/sync/core/internal_components_factory.h"
-#include "components/sync/core/model_type_connector.h"
-#include "components/sync/core/shutdown_reason.h"
-#include "components/sync/core/sync_encryption_handler.h"
+#include "components/sync/engine/configure_reason.h"
+#include "components/sync/engine/connection_status.h"
+#include "components/sync/engine/engine_components_factory.h"
#include "components/sync/engine/events/protocol_event.h"
#include "components/sync/engine/model_safe_worker.h"
+#include "components/sync/engine/model_type_connector.h"
#include "components/sync/engine/net/http_post_provider_factory.h"
+#include "components/sync/engine/shutdown_reason.h"
+#include "components/sync/engine/sync_encryption_handler.h"
#include "components/sync/engine/sync_status.h"
#include "components/sync/protocol/sync_protocol_error.h"
#include "components/sync/syncable/change_record.h"
@@ -45,8 +45,8 @@ class BaseTransaction;
class CancelationSignal;
class DataTypeDebugInfoListener;
class Encryptor;
+class EngineComponentsFactory;
class ExtensionsActivity;
-class InternalComponentsFactory;
class JsBackend;
class JsEventHandler;
class ProtocolEvent;
@@ -245,7 +245,7 @@ class SyncManager {
std::string restored_key_for_bootstrapping;
std::string restored_keystore_key_for_bootstrapping;
- std::unique_ptr<InternalComponentsFactory> internal_components_factory;
+ std::unique_ptr<EngineComponentsFactory> engine_components_factory;
// Must outlive SyncManager.
Encryptor* encryptor;
@@ -399,4 +399,4 @@ class SyncManager {
} // namespace syncer
-#endif // COMPONENTS_SYNC_CORE_SYNC_MANAGER_H_
+#endif // COMPONENTS_SYNC_ENGINE_SYNC_MANAGER_H_
« no previous file with comments | « components/sync/engine/sync_encryption_handler.cc ('k') | components/sync/engine/sync_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698