| 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_THEMES_THEME_SYNCABLE_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_THEMES_THEME_SYNCABLE_SERVICE_H_ |
| 6 #define CHROME_BROWSER_THEMES_THEME_SYNCABLE_SERVICE_H_ | 6 #define CHROME_BROWSER_THEMES_THEME_SYNCABLE_SERVICE_H_ |
| 7 | 7 |
| 8 #include "base/gtest_prod_util.h" | 8 #include "base/gtest_prod_util.h" |
| 9 #include "base/macros.h" |
| 9 #include "base/threading/thread_checker.h" | 10 #include "base/threading/thread_checker.h" |
| 10 #include "sync/api/sync_change.h" | 11 #include "sync/api/sync_change.h" |
| 11 #include "sync/api/sync_data.h" | 12 #include "sync/api/sync_data.h" |
| 13 #include "sync/api/sync_error.h" |
| 12 #include "sync/api/sync_error_factory.h" | 14 #include "sync/api/sync_error_factory.h" |
| 13 #include "sync/api/sync_error.h" | |
| 14 #include "sync/api/syncable_service.h" | 15 #include "sync/api/syncable_service.h" |
| 15 | 16 |
| 16 class Profile; | 17 class Profile; |
| 17 class ThemeService; | 18 class ThemeService; |
| 18 class ThemeSyncableServiceTest; | 19 class ThemeSyncableServiceTest; |
| 19 | 20 |
| 20 namespace sync_pb { | 21 namespace sync_pb { |
| 21 class ThemeSpecifics; | 22 class ThemeSpecifics; |
| 22 } | 23 } |
| 23 | 24 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 bool use_system_theme_by_default_; | 85 bool use_system_theme_by_default_; |
| 85 | 86 |
| 86 base::ThreadChecker thread_checker_; | 87 base::ThreadChecker thread_checker_; |
| 87 | 88 |
| 88 FRIEND_TEST_ALL_PREFIXES(ThemeSyncableServiceTest, AreThemeSpecificsEqual); | 89 FRIEND_TEST_ALL_PREFIXES(ThemeSyncableServiceTest, AreThemeSpecificsEqual); |
| 89 | 90 |
| 90 DISALLOW_COPY_AND_ASSIGN(ThemeSyncableService); | 91 DISALLOW_COPY_AND_ASSIGN(ThemeSyncableService); |
| 91 }; | 92 }; |
| 92 | 93 |
| 93 #endif // CHROME_BROWSER_THEMES_THEME_SYNCABLE_SERVICE_H_ | 94 #endif // CHROME_BROWSER_THEMES_THEME_SYNCABLE_SERVICE_H_ |
| OLD | NEW |