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

Unified Diff: chrome/browser/sync/glue/data_type_manager_impl.h

Issue 278053002: Move DataTypeManager into sync_driver component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix tests Created 6 years, 7 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 | « no previous file | chrome/browser/sync/glue/data_type_manager_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/glue/data_type_manager_impl.h
diff --git a/chrome/browser/sync/glue/data_type_manager_impl.h b/chrome/browser/sync/glue/data_type_manager_impl.h
deleted file mode 100644
index 9a3e9597108c8952654dab313d7fcde0e11d5f7a..0000000000000000000000000000000000000000
--- a/chrome/browser/sync/glue/data_type_manager_impl.h
+++ /dev/null
@@ -1,194 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_SYNC_GLUE_DATA_TYPE_MANAGER_IMPL_H__
-#define CHROME_BROWSER_SYNC_GLUE_DATA_TYPE_MANAGER_IMPL_H__
-
-#include "components/sync_driver/data_type_manager.h"
-
-#include <map>
-#include <queue>
-#include <vector>
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "base/memory/weak_ptr.h"
-#include "base/time/time.h"
-#include "components/sync_driver/backend_data_type_configurer.h"
-#include "components/sync_driver/model_association_manager.h"
-
-namespace syncer {
-struct DataTypeConfigurationStats;
-class DataTypeDebugInfoListener;
-template <typename T> class WeakHandle;
-}
-
-namespace browser_sync {
-
-class DataTypeController;
-class DataTypeEncryptionHandler;
-class DataTypeManagerObserver;
-class FailedDataTypesHandler;
-
-// List of data types grouped by priority and ordered from high priority to
-// low priority.
-typedef std::queue<syncer::ModelTypeSet> TypeSetPriorityList;
-
-class DataTypeManagerImpl : public DataTypeManager,
- public ModelAssociationResultProcessor {
- public:
- DataTypeManagerImpl(
- const syncer::WeakHandle<syncer::DataTypeDebugInfoListener>&
- debug_info_listener,
- const DataTypeController::TypeMap* controllers,
- const DataTypeEncryptionHandler* encryption_handler,
- BackendDataTypeConfigurer* configurer,
- DataTypeManagerObserver* observer,
- FailedDataTypesHandler* failed_data_types_handler);
- virtual ~DataTypeManagerImpl();
-
- // DataTypeManager interface.
- virtual void Configure(syncer::ModelTypeSet desired_types,
- syncer::ConfigureReason reason) OVERRIDE;
-
- // Needed only for backend migration.
- virtual void PurgeForMigration(
- syncer::ModelTypeSet undesired_types,
- syncer::ConfigureReason reason) OVERRIDE;
-
- virtual void Stop() OVERRIDE;
- virtual State state() const OVERRIDE;
-
- // |ModelAssociationResultProcessor| implementation.
- virtual void OnSingleDataTypeAssociationDone(
- syncer::ModelType type,
- const syncer::DataTypeAssociationStats& association_stats) OVERRIDE;
- virtual void OnModelAssociationDone(
- const DataTypeManager::ConfigureResult& result) OVERRIDE;
-
- // Used by unit tests. TODO(sync) : This would go away if we made
- // this class be able to do Dependency injection. crbug.com/129212.
- ModelAssociationManager* GetModelAssociationManagerForTesting() {
- return &model_association_manager_;
- }
-
- private:
- friend class TestDataTypeManager;
-
- // Abort configuration and stop all data types due to configuration errors.
- void Abort(ConfigureStatus status,
- const syncer::SyncError& error);
-
- // Returns the priority types (control + priority user types).
- // Virtual for overriding during tests.
- virtual syncer::ModelTypeSet GetPriorityTypes() const;
-
- // Divide |types| into sets by their priorities and return the sets from
- // high priority to low priority.
- TypeSetPriorityList PrioritizeTypes(const syncer::ModelTypeSet& types);
-
- // Post a task to reconfigure when no downloading or association are running.
- void ProcessReconfigure();
-
- void Restart(syncer::ConfigureReason reason);
- void DownloadReady(base::Time download_start_time,
- syncer::ModelTypeSet types_to_download,
- syncer::ModelTypeSet high_priority_types_before,
- syncer::ModelTypeSet first_sync_types,
- syncer::ModelTypeSet failed_configuration_types);
-
- // Notification from the SBH that download failed due to a transient
- // error and it will be retried.
- void OnDownloadRetry();
- void NotifyStart();
- void NotifyDone(const ConfigureResult& result);
-
- // Add to |configure_time_delta_| the time since we last called
- // Restart().
- void AddToConfigureTime();
-
- void ConfigureImpl(syncer::ModelTypeSet desired_types,
- syncer::ConfigureReason reason);
-
- BackendDataTypeConfigurer::DataTypeConfigStateMap
- BuildDataTypeConfigStateMap(
- const syncer::ModelTypeSet& types_being_configured) const;
-
- // Start association of next batch of data types after association of
- // previous batch finishes.
- void StartNextAssociation();
-
- void StopImpl();
-
- BackendDataTypeConfigurer* configurer_;
- // Map of all data type controllers that are available for sync.
- // This list is determined at startup by various command line flags.
- const DataTypeController::TypeMap* controllers_;
- State state_;
- std::map<syncer::ModelType, int> start_order_;
- syncer::ModelTypeSet last_requested_types_;
-
- // Whether an attempt to reconfigure was made while we were busy configuring.
- // The |last_requested_types_| will reflect the newest set of requested types.
- bool needs_reconfigure_;
-
- // The reason for the last reconfigure attempt. Note: this will be set to a
- // valid value only when |needs_reconfigure_| is set.
- syncer::ConfigureReason last_configure_reason_;
-
- // The last time Restart() was called.
- base::Time last_restart_time_;
-
- // The accumulated time spent between calls to Restart() and going
- // to the DONE state.
- base::TimeDelta configure_time_delta_;
-
- // Sync's datatype debug info listener, which we pass model association
- // statistics to.
- const syncer::WeakHandle<syncer::DataTypeDebugInfoListener>
- debug_info_listener_;
-
- // The manager that handles the model association of the individual types.
- ModelAssociationManager model_association_manager_;
-
- // DataTypeManager must have only one observer -- the ProfileSyncService that
- // created it and manages its lifetime.
- DataTypeManagerObserver* const observer_;
-
- // For querying failed data types (having unrecoverable error) when
- // configuring backend.
- browser_sync::FailedDataTypesHandler* failed_data_types_handler_;
-
- // Types waiting to be downloaded.
- TypeSetPriorityList download_types_queue_;
-
- // Types waiting for association and related time tracking info.
- struct AssociationTypesInfo {
- AssociationTypesInfo();
- ~AssociationTypesInfo();
- syncer::ModelTypeSet types;
- syncer::ModelTypeSet first_sync_types;
- base::Time download_start_time;
- base::Time download_ready_time;
- base::Time association_request_time;
- syncer::ModelTypeSet high_priority_types_before;
- syncer::ModelTypeSet configured_types;
- };
- std::queue<AssociationTypesInfo> association_types_queue_;
-
- // The encryption handler lets the DataTypeManager know the state of sync
- // datatype encryption.
- const browser_sync::DataTypeEncryptionHandler* encryption_handler_;
-
- // Association and time stats of data type configuration.
- std::vector<syncer::DataTypeConfigurationStats> configuration_stats_;
-
- base::WeakPtrFactory<DataTypeManagerImpl> weak_ptr_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(DataTypeManagerImpl);
-};
-
-} // namespace browser_sync
-
-#endif // CHROME_BROWSER_SYNC_GLUE_DATA_TYPE_MANAGER_IMPL_H__
« no previous file with comments | « no previous file | chrome/browser/sync/glue/data_type_manager_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698