| 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/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/threading/thread_checker.h" | 11 #include "base/threading/thread_checker.h" |
| 11 #include "sync/api/sync_change.h" | 12 #include "sync/api/sync_change.h" |
| 12 #include "sync/api/sync_data.h" | 13 #include "sync/api/sync_data.h" |
| 13 #include "sync/api/sync_error.h" | 14 #include "sync/api/sync_error.h" |
| 14 #include "sync/api/sync_error_factory.h" | 15 #include "sync/api/sync_error_factory.h" |
| 15 #include "sync/api/syncable_service.h" | 16 #include "sync/api/syncable_service.h" |
| 16 | 17 |
| 17 class Profile; | 18 class Profile; |
| 18 class ThemeService; | 19 class ThemeService; |
| 19 class ThemeSyncableServiceTest; | 20 class ThemeSyncableServiceTest; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 bool use_system_theme_by_default_; | 86 bool use_system_theme_by_default_; |
| 86 | 87 |
| 87 base::ThreadChecker thread_checker_; | 88 base::ThreadChecker thread_checker_; |
| 88 | 89 |
| 89 FRIEND_TEST_ALL_PREFIXES(ThemeSyncableServiceTest, AreThemeSpecificsEqual); | 90 FRIEND_TEST_ALL_PREFIXES(ThemeSyncableServiceTest, AreThemeSpecificsEqual); |
| 90 | 91 |
| 91 DISALLOW_COPY_AND_ASSIGN(ThemeSyncableService); | 92 DISALLOW_COPY_AND_ASSIGN(ThemeSyncableService); |
| 92 }; | 93 }; |
| 93 | 94 |
| 94 #endif // CHROME_BROWSER_THEMES_THEME_SYNCABLE_SERVICE_H_ | 95 #endif // CHROME_BROWSER_THEMES_THEME_SYNCABLE_SERVICE_H_ |
| OLD | NEW |