- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / sync / glue / theme_data_type_controller.h
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SYNC_GLUE_THEME_DATA_TYPE_CONTROLLER_H_
6 #define CHROME_BROWSER_SYNC_GLUE_THEME_DATA_TYPE_CONTROLLER_H_
7
8 #include "chrome/browser/sync/glue/ui_data_type_controller.h"
9
10 namespace browser_sync {
11
12 class ThemeDataTypeController : public UIDataTypeController {
13  public:
14   ThemeDataTypeController(
15       ProfileSyncComponentsFactory* profile_sync_factory,
16       Profile* profile,
17       ProfileSyncService* sync_service);
18
19  private:
20   virtual ~ThemeDataTypeController();
21
22   // UIDataTypeController implementations.
23   virtual bool StartModels() OVERRIDE;
24   DISALLOW_COPY_AND_ASSIGN(ThemeDataTypeController);
25 };
26
27 }  // namespace browser_sync
28
29 #endif  // CHROME_BROWSER_SYNC_GLUE_THEME_DATA_TYPE_CONTROLLER_H_