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

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

Issue 10696087: [Sync] Move ModelType and related classes to 'syncer' namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort headers, update copyrights Created 8 years, 6 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: chrome/browser/sync/glue/fake_data_type_controller.h
diff --git a/chrome/browser/sync/glue/fake_data_type_controller.h b/chrome/browser/sync/glue/fake_data_type_controller.h
index 173e9f9e269e4e255db9599423f5a745bd4df422..f541dad4f802d00b175269fb4d013b563d75d8c6 100644
--- a/chrome/browser/sync/glue/fake_data_type_controller.h
+++ b/chrome/browser/sync/glue/fake_data_type_controller.h
@@ -21,7 +21,7 @@ namespace browser_sync {
// functionality.)
class FakeDataTypeController : public DataTypeController {
public:
- explicit FakeDataTypeController(syncable::ModelType type);
+ explicit FakeDataTypeController(syncer::ModelType type);
virtual void LoadModels(
const ModelLoadCallback& model_load_callback) OVERRIDE;
@@ -34,7 +34,7 @@ class FakeDataTypeController : public DataTypeController {
virtual void Stop() OVERRIDE;
- virtual syncable::ModelType type() const OVERRIDE;
+ virtual syncer::ModelType type() const OVERRIDE;
virtual std::string name() const OVERRIDE;
@@ -60,7 +60,7 @@ class FakeDataTypeController : public DataTypeController {
private:
DataTypeController::State state_;
bool model_load_delayed_;
- syncable::ModelType type_;
+ syncer::ModelType type_;
StartCallback last_start_callback_;
ModelLoadCallback model_load_callback_;
};

Powered by Google App Engine
This is Rietveld 408576698