| 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_UI_ASH_CHROME_LAUNCHER_PREFS_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ | 6 #define CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "ash/common/shelf/shelf_types.h" | 12 #include "ash/public/cpp/shelf_types.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "components/syncable_prefs/pref_service_syncable_observer.h" | 14 #include "components/syncable_prefs/pref_service_syncable_observer.h" |
| 15 | 15 |
| 16 class LauncherControllerHelper; | 16 class LauncherControllerHelper; |
| 17 class PrefService; | 17 class PrefService; |
| 18 class Profile; | 18 class Profile; |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 class DictionaryValue; | 21 class DictionaryValue; |
| 22 } | 22 } |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 // Profile prefs. Not owned. | 108 // Profile prefs. Not owned. |
| 109 syncable_prefs::PrefServiceSyncable* prefs_; | 109 syncable_prefs::PrefServiceSyncable* prefs_; |
| 110 | 110 |
| 111 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherPrefsObserver); | 111 DISALLOW_COPY_AND_ASSIGN(ChromeLauncherPrefsObserver); |
| 112 }; | 112 }; |
| 113 | 113 |
| 114 } // namespace launcher | 114 } // namespace launcher |
| 115 } // namespace ash | 115 } // namespace ash |
| 116 | 116 |
| 117 #endif // CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ | 117 #endif // CHROME_BROWSER_UI_ASH_CHROME_LAUNCHER_PREFS_H_ |
| OLD | NEW |