| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_API_
H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_API_
H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_API_
H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_API_
H_ |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include <set> | 9 #include <set> |
| 9 #include <string> | 10 #include <string> |
| 10 | 11 |
| 11 #include "base/macros.h" | 12 #include "base/macros.h" |
| 12 #include "base/scoped_observer.h" | 13 #include "base/scoped_observer.h" |
| 13 #include "components/search_engines/template_url_service.h" | 14 #include "components/search_engines/template_url_service.h" |
| 14 #include "extensions/browser/browser_context_keyed_api_factory.h" | 15 #include "extensions/browser/browser_context_keyed_api_factory.h" |
| 15 #include "extensions/browser/extension_registry_observer.h" | 16 #include "extensions/browser/extension_registry_observer.h" |
| 16 | 17 |
| 17 class Profile; | 18 class Profile; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 30 GetFactoryInstance(); | 31 GetFactoryInstance(); |
| 31 | 32 |
| 32 private: | 33 private: |
| 33 friend class BrowserContextKeyedAPIFactory<SettingsOverridesAPI>; | 34 friend class BrowserContextKeyedAPIFactory<SettingsOverridesAPI>; |
| 34 | 35 |
| 35 typedef std::set<scoped_refptr<const Extension> > PendingExtensions; | 36 typedef std::set<scoped_refptr<const Extension> > PendingExtensions; |
| 36 | 37 |
| 37 // Wrappers around PreferenceAPI. | 38 // Wrappers around PreferenceAPI. |
| 38 void SetPref(const std::string& extension_id, | 39 void SetPref(const std::string& extension_id, |
| 39 const std::string& pref_key, | 40 const std::string& pref_key, |
| 40 base::Value* value); | 41 std::unique_ptr<base::Value> value) const; |
| 41 void UnsetPref(const std::string& extension_id, | 42 void UnsetPref(const std::string& extension_id, |
| 42 const std::string& pref_key); | 43 const std::string& pref_key) const; |
| 43 | 44 |
| 44 // ExtensionRegistryObserver implementation. | 45 // ExtensionRegistryObserver implementation. |
| 45 void OnExtensionLoaded(content::BrowserContext* browser_context, | 46 void OnExtensionLoaded(content::BrowserContext* browser_context, |
| 46 const Extension* extension) override; | 47 const Extension* extension) override; |
| 47 void OnExtensionUnloaded(content::BrowserContext* browser_context, | 48 void OnExtensionUnloaded(content::BrowserContext* browser_context, |
| 48 const Extension* extension, | 49 const Extension* extension, |
| 49 UnloadedExtensionInfo::Reason reason) override; | 50 UnloadedExtensionInfo::Reason reason) override; |
| 50 | 51 |
| 51 // KeyedService implementation. | 52 // KeyedService implementation. |
| 52 void Shutdown() override; | 53 void Shutdown() override; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 73 DISALLOW_COPY_AND_ASSIGN(SettingsOverridesAPI); | 74 DISALLOW_COPY_AND_ASSIGN(SettingsOverridesAPI); |
| 74 }; | 75 }; |
| 75 | 76 |
| 76 template <> | 77 template <> |
| 77 void BrowserContextKeyedAPIFactory< | 78 void BrowserContextKeyedAPIFactory< |
| 78 SettingsOverridesAPI>::DeclareFactoryDependencies(); | 79 SettingsOverridesAPI>::DeclareFactoryDependencies(); |
| 79 | 80 |
| 80 } // namespace extensions | 81 } // namespace extensions |
| 81 | 82 |
| 82 #endif // CHROME_BROWSER_EXTENSIONS_API_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_A
PI_H_ | 83 #endif // CHROME_BROWSER_EXTENSIONS_API_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_A
PI_H_ |
| OLD | NEW |