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_EXTENSIONS_API_PREFERENCE_PREFERENCE_API_H__ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_PREFERENCE_API_H__ |
6 #define CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_PREFERENCE_API_H__ | 6 #define CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_PREFERENCE_API_H__ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/prefs/pref_change_registrar.h" | |
13 #include "chrome/browser/extensions/api/content_settings/content_settings_store.
h" | 12 #include "chrome/browser/extensions/api/content_settings/content_settings_store.
h" |
14 #include "chrome/browser/extensions/chrome_extension_function.h" | 13 #include "chrome/browser/extensions/chrome_extension_function.h" |
| 14 #include "components/prefs/pref_change_registrar.h" |
15 #include "content/public/browser/notification_observer.h" | 15 #include "content/public/browser/notification_observer.h" |
16 #include "extensions/browser/browser_context_keyed_api_factory.h" | 16 #include "extensions/browser/browser_context_keyed_api_factory.h" |
17 #include "extensions/browser/event_router.h" | 17 #include "extensions/browser/event_router.h" |
18 #include "extensions/browser/extension_prefs_scope.h" | 18 #include "extensions/browser/extension_prefs_scope.h" |
19 | 19 |
20 class ExtensionPrefValueMap; | 20 class ExtensionPrefValueMap; |
21 class PrefService; | 21 class PrefService; |
22 | 22 |
23 namespace base { | 23 namespace base { |
24 class Value; | 24 class Value; |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 protected: | 212 protected: |
213 ~ClearPreferenceFunction() override; | 213 ~ClearPreferenceFunction() override; |
214 | 214 |
215 // ExtensionFunction: | 215 // ExtensionFunction: |
216 bool RunSync() override; | 216 bool RunSync() override; |
217 }; | 217 }; |
218 | 218 |
219 } // namespace extensions | 219 } // namespace extensions |
220 | 220 |
221 #endif // CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_PREFERENCE_API_H__ | 221 #endif // CHROME_BROWSER_EXTENSIONS_API_PREFERENCE_PREFERENCE_API_H__ |
OLD | NEW |