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

Unified Diff: sync/internal_api/public/sync_manager.h

Issue 451743002: Pass args to SyncManager::Init via a struct. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add SYNC_EXPORT tag to InitArgs. Created 6 years, 4 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 | « chrome/browser/sync/glue/sync_backend_host_core.cc ('k') | sync/internal_api/public/sync_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/public/sync_manager.h
diff --git a/sync/internal_api/public/sync_manager.h b/sync/internal_api/public/sync_manager.h
index 0b01232cb9673c6f4ff473b676921e3a75bdfcaa..3a63a3b2eadf26914bcbf53ea4a5bf3afc4be980 100644
--- a/sync/internal_api/public/sync_manager.h
+++ b/sync/internal_api/public/sync_manager.h
@@ -25,6 +25,7 @@
#include "sync/internal_api/public/engine/model_safe_worker.h"
#include "sync/internal_api/public/engine/sync_status.h"
#include "sync/internal_api/public/events/protocol_event.h"
+#include "sync/internal_api/public/http_post_provider_factory.h"
#include "sync/internal_api/public/shutdown_reason.h"
#include "sync/internal_api/public/sync_context_proxy.h"
#include "sync/internal_api/public/sync_encryption_handler.h"
@@ -46,7 +47,6 @@ class CancelationSignal;
class DataTypeDebugInfoListener;
class Encryptor;
class ExtensionsActivity;
-class HttpPostProviderFactory;
class InternalComponentsFactory;
class JsBackend;
class JsEventHandler;
@@ -220,52 +220,57 @@ class SYNC_EXPORT SyncManager {
virtual ~Observer();
};
+ // Arguments for initializing SyncManager.
+ struct SYNC_EXPORT InitArgs {
+ InitArgs();
+ ~InitArgs();
+
+ // Path in which to create or open sync's sqlite database (aka the
+ // directory).
+ base::FilePath database_location;
+
+ // Used to propagate events to chrome://sync-internals. Optional.
+ WeakHandle<JsEventHandler> event_handler;
+
+ // URL of the sync server.
+ GURL service_url;
+
+ // Used to communicate with the sync server.
+ scoped_ptr<HttpPostProviderFactory> post_factory;
+ // TODO(akalin): Replace post_factory parameter with a URLFetcher.
tim (not reviewing) 2014/08/07 20:10:14 I don't think this is really a goal anymore.
maniscalco 2014/08/07 20:55:08 Good point. Removed.
+
+ std::vector<scoped_refptr<ModelSafeWorker> > workers;
+ ExtensionsActivity* extensions_activity;
tim (not reviewing) 2014/08/07 20:10:14 It'd be good to comment on lifetimes for the vario
maniscalco 2014/08/07 20:55:08 Good idea. Done. I've also converted internal_co
+ ChangeDelegate* change_delegate;
+
+ // Credentials to be used when talking to the sync server.
+ SyncCredentials credentials;
+
+ // Unqiuely identifies this client to the invalidation notification server.
+ std::string invalidator_client_id;
+
+ // Used to boostrap the cryptographer.
+ std::string restored_key_for_bootstrapping;
+ std::string restored_keystore_key_for_bootstrapping;
+
+ InternalComponentsFactory* internal_components_factory;
+ Encryptor* encryptor;
+ scoped_ptr<UnrecoverableErrorHandler> unrecoverable_error_handler;
+ ReportUnrecoverableErrorFunction report_unrecoverable_error_function;
+
+ // Carries shutdown requests across threads and will be used to cut short
+ // any network I/O and tell the syncer to exit early.
+ CancelationSignal* cancelation_signal;
+ };
+
SyncManager();
virtual ~SyncManager();
- // Initialize the sync manager. |database_location| specifies the path of
- // the directory in which to locate a sqlite repository storing the syncer
- // backend state. Initialization will open the database, or create it if it
- // does not already exist. Returns false on failure.
- // |event_handler| is the JsEventHandler used to propagate events to
- // chrome://sync-internals. |event_handler| may be uninitialized.
- // |service_url| is the URL of the Chrome Sync Server.
- // |post_factory| will be owned internally and used to create
- // instances of an HttpPostProvider.
- // |model_safe_worker| ownership is given to the SyncManager.
- // |user_agent| is a 7-bit ASCII string suitable for use as the User-Agent
- // HTTP header. Used internally when collecting stats to classify clients.
- // |invalidator| is owned and used to listen for invalidations.
- // |invalidator_client_id| is used to unqiuely identify this client to the
- // invalidation notification server.
- // |restored_key_for_bootstrapping| is the key used to boostrap the
- // cryptographer
- // |keystore_encryption_enabled| determines whether we enable the keystore
- // encryption functionality in the cryptographer/nigori.
- // |report_unrecoverable_error_function| may be NULL.
- // |cancelation_signal| carries shutdown requests across threads. This one
- // will be used to cut short any network I/O and tell the syncer to exit
- // early.
+ // Initialize the sync manager using arguments from |args|.
//
- // TODO(akalin): Replace the |post_factory| parameter with a
- // URLFetcher parameter.
- virtual void Init(
- const base::FilePath& database_location,
- const WeakHandle<JsEventHandler>& event_handler,
- const GURL& service_url,
- scoped_ptr<HttpPostProviderFactory> post_factory,
- const std::vector<scoped_refptr<ModelSafeWorker> >& workers,
- ExtensionsActivity* extensions_activity,
- ChangeDelegate* change_delegate,
- const SyncCredentials& credentials,
- const std::string& invalidator_client_id,
- const std::string& restored_key_for_bootstrapping,
- const std::string& restored_keystore_key_for_bootstrapping,
- InternalComponentsFactory* internal_components_factory,
- Encryptor* encryptor,
- scoped_ptr<UnrecoverableErrorHandler> unrecoverable_error_handler,
- ReportUnrecoverableErrorFunction report_unrecoverable_error_function,
- CancelationSignal* cancelation_signal) = 0;
+ // Note, args is passed by non-const pointer because it contains objects like
+ // scoped_ptr.
+ virtual void Init(InitArgs* args) = 0;
virtual ModelTypeSet InitialSyncEndedTypes() = 0;
« no previous file with comments | « chrome/browser/sync/glue/sync_backend_host_core.cc ('k') | sync/internal_api/public/sync_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698