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

Unified Diff: components/sync/driver/ui_data_type_controller.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/driver/ui_data_type_controller.h
diff --git a/components/sync/driver/ui_data_type_controller.h b/components/sync/driver/ui_data_type_controller.h
index 5a507aa30a1ee3e60fde32a3f94379fc2ffc0483..cb4b3cd81c050e80d591793d612d9e531f13aa79 100644
--- a/components/sync/driver/ui_data_type_controller.h
+++ b/components/sync/driver/ui_data_type_controller.h
@@ -17,13 +17,15 @@
namespace base {
class TimeDelta;
-} // namespace base
+}
namespace syncer {
-
class SyncableService;
class SyncClient;
class SyncError;
+}
+
+namespace sync_driver {
// Implementation for datatypes that reside on the (UI thread). This is the same
// thread we perform initialization on, so we don't have to worry about thread
@@ -32,7 +34,7 @@ class SyncError;
class UIDataTypeController : public DirectoryDataTypeController {
public:
// |dump_stack| is called when an unrecoverable error occurs.
- UIDataTypeController(ModelType type,
+ UIDataTypeController(syncer::ModelType type,
const base::Closure& dump_stack,
SyncClient* sync_client);
~UIDataTypeController() override;
@@ -41,7 +43,7 @@ class UIDataTypeController : public DirectoryDataTypeController {
void LoadModels(const ModelLoadCallback& model_load_callback) override;
void StartAssociating(const StartCallback& start_callback) override;
void Stop() override;
- ModelSafeGroup model_safe_group() const override;
+ syncer::ModelSafeGroup model_safe_group() const override;
ChangeProcessor* GetChangeProcessor() const override;
std::string name() const override;
State state() const override;
@@ -69,8 +71,8 @@ class UIDataTypeController : public DirectoryDataTypeController {
// Helper method for cleaning up state and invoking the start callback.
virtual void StartDone(ConfigureResult result,
- const SyncMergeResult& local_merge_result,
- const SyncMergeResult& syncer_merge_result);
+ const syncer::SyncMergeResult& local_merge_result,
+ const syncer::SyncMergeResult& syncer_merge_result);
// Record association time.
virtual void RecordAssociationTime(base::TimeDelta time);
@@ -82,7 +84,7 @@ class UIDataTypeController : public DirectoryDataTypeController {
// us know that it is safe to start associating.
void OnModelLoaded();
- std::unique_ptr<DataTypeErrorHandler> CreateErrorHandler() override;
+ std::unique_ptr<syncer::DataTypeErrorHandler> CreateErrorHandler() override;
State state_;
@@ -100,7 +102,7 @@ class UIDataTypeController : public DirectoryDataTypeController {
//
// Note: we use refcounting here primarily so that we can keep a uniform
// SyncableService API, whether the datatype lives on the UI thread or not
- // (a SyncableService takes ownership of its SyncChangeProcessor when
+ // (a syncer::SyncableService takes ownership of its SyncChangeProcessor when
// MergeDataAndStartSyncing is called). This will help us eventually merge the
// two datatype controller implementations (for ui and non-ui thread
// datatypes).
@@ -110,7 +112,7 @@ class UIDataTypeController : public DirectoryDataTypeController {
// A weak pointer to the actual local syncable service, which performs all the
// real work. We do not own the object.
- base::WeakPtr<SyncableService> local_service_;
+ base::WeakPtr<syncer::SyncableService> local_service_;
private:
// Associate the sync model with the service's model, then start syncing.
@@ -118,11 +120,11 @@ class UIDataTypeController : public DirectoryDataTypeController {
virtual void AbortModelLoad();
- void OnUnrecoverableError(const SyncError& error);
+ void OnUnrecoverableError(const syncer::SyncError& error);
DISALLOW_COPY_AND_ASSIGN(UIDataTypeController);
};
-} // namespace syncer
+} // namespace sync_driver
#endif // COMPONENTS_SYNC_DRIVER_UI_DATA_TYPE_CONTROLLER_H_
« no previous file with comments | « components/sync/driver/system_encryptor_unittest.cc ('k') | components/sync/driver/ui_data_type_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698