| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_SYNC_GLUE_EXTENSION_SETTING_DATA_TYPE_CONTROLLER_H__ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_EXTENSION_SETTING_DATA_TYPE_CONTROLLER_H__ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_EXTENSION_SETTING_DATA_TYPE_CONTROLLER_H__ | 6 #define CHROME_BROWSER_SYNC_GLUE_EXTENSION_SETTING_DATA_TYPE_CONTROLLER_H__ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "chrome/browser/sync/glue/new_non_frontend_data_type_controller.h" | 12 #include "chrome/browser/sync/glue/new_non_frontend_data_type_controller.h" |
| 13 | 13 |
| 14 class Profile; | 14 class Profile; |
| 15 class ProfileSyncComponentsFactory; | 15 class ProfileSyncComponentsFactory; |
| 16 class ProfileSyncService; | 16 class ProfileSyncService; |
| 17 |
| 18 namespace csync { |
| 17 class SyncableService; | 19 class SyncableService; |
| 20 } |
| 18 | 21 |
| 19 namespace extensions { | 22 namespace extensions { |
| 20 class SettingsFrontend; | 23 class SettingsFrontend; |
| 21 } | 24 } |
| 22 | 25 |
| 23 namespace browser_sync { | 26 namespace browser_sync { |
| 24 | 27 |
| 25 class ExtensionSettingDataTypeController | 28 class ExtensionSettingDataTypeController |
| 26 : public NewNonFrontendDataTypeController { | 29 : public NewNonFrontendDataTypeController { |
| 27 public: | 30 public: |
| (...skipping 23 matching lines...) Expand all Loading... |
| 51 // These only used on the UI thread. | 54 // These only used on the UI thread. |
| 52 Profile* profile_; | 55 Profile* profile_; |
| 53 ProfileSyncService* profile_sync_service_; | 56 ProfileSyncService* profile_sync_service_; |
| 54 | 57 |
| 55 DISALLOW_COPY_AND_ASSIGN(ExtensionSettingDataTypeController); | 58 DISALLOW_COPY_AND_ASSIGN(ExtensionSettingDataTypeController); |
| 56 }; | 59 }; |
| 57 | 60 |
| 58 } // namespace browser_sync | 61 } // namespace browser_sync |
| 59 | 62 |
| 60 #endif // CHROME_BROWSER_SYNC_GLUE_EXTENSION_SETTING_DATA_TYPE_CONTROLLER_H__ | 63 #endif // CHROME_BROWSER_SYNC_GLUE_EXTENSION_SETTING_DATA_TYPE_CONTROLLER_H__ |
| OLD | NEW |