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

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

Issue 133503011: Move files from //chrome/browser/sync to sync_driver component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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/proxy_data_type_controller.h
diff --git a/chrome/browser/sync/glue/proxy_data_type_controller.h b/chrome/browser/sync/glue/proxy_data_type_controller.h
deleted file mode 100644
index 03f79d2ba31fe29734d3cbaec2e3a61a5f10bc7d..0000000000000000000000000000000000000000
--- a/chrome/browser/sync/glue/proxy_data_type_controller.h
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright (c) 2013 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_PROXY_DATA_TYPE_CONTROLLER_H__
-#define CHROME_BROWSER_SYNC_GLUE_PROXY_DATA_TYPE_CONTROLLER_H__
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "components/sync_driver/data_type_controller.h"
-
-namespace browser_sync {
-
-// Implementation for proxy datatypes. These are datatype that have no
-// representation in sync, and therefore no change processor or syncable
-// service.
-class ProxyDataTypeController : public DataTypeController {
- public:
- explicit ProxyDataTypeController(
- scoped_refptr<base::MessageLoopProxy> ui_thread,
- syncer::ModelType type);
-
- // DataTypeController interface.
- virtual void LoadModels(
- const ModelLoadCallback& model_load_callback) OVERRIDE;
- virtual void StartAssociating(const StartCallback& start_callback) OVERRIDE;
- virtual void Stop() OVERRIDE;
- virtual syncer::ModelType type() const OVERRIDE;
- virtual syncer::ModelSafeGroup model_safe_group() const OVERRIDE;
- virtual std::string name() const OVERRIDE;
- virtual State state() const OVERRIDE;
-
- // DataTypeErrorHandler interface.
- virtual void OnSingleDatatypeUnrecoverableError(
- const tracked_objects::Location& from_here,
- const std::string& message) OVERRIDE;
-
- protected:
- // DataTypeController is RefCounted.
- virtual ~ProxyDataTypeController();
-
- // DataTypeController interface.
- virtual void OnModelLoaded() OVERRIDE;
-
- private:
- State state_;
-
- // The actual type for this controller.
- syncer::ModelType type_;
-
- DISALLOW_COPY_AND_ASSIGN(ProxyDataTypeController);
-};
-
-} // namespace browser_sync
-
-#endif // CHROME_BROWSER_SYNC_GLUE_PROXY_DATA_TYPE_CONTROLLER_H__

Powered by Google App Engine
This is Rietveld 408576698