| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ | 5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ |
| 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ | 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "extensions/browser/extensions_browser_client.h" | 9 #include "extensions/browser/extensions_browser_client.h" |
| 10 | 10 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 content::BrowserContext* context) override; | 72 content::BrowserContext* context) override; |
| 73 ExtensionSystemProvider* GetExtensionSystemFactory() override; | 73 ExtensionSystemProvider* GetExtensionSystemFactory() override; |
| 74 void RegisterExtensionFunctions( | 74 void RegisterExtensionFunctions( |
| 75 ExtensionFunctionRegistry* registry) const override; | 75 ExtensionFunctionRegistry* registry) const override; |
| 76 void RegisterMojoServices(content::RenderFrameHost* render_frame_host, | 76 void RegisterMojoServices(content::RenderFrameHost* render_frame_host, |
| 77 const Extension* extension) const override; | 77 const Extension* extension) const override; |
| 78 scoped_ptr<RuntimeAPIDelegate> CreateRuntimeAPIDelegate( | 78 scoped_ptr<RuntimeAPIDelegate> CreateRuntimeAPIDelegate( |
| 79 content::BrowserContext* context) const override; | 79 content::BrowserContext* context) const override; |
| 80 const ComponentExtensionResourceManager* | 80 const ComponentExtensionResourceManager* |
| 81 GetComponentExtensionResourceManager() override; | 81 GetComponentExtensionResourceManager() override; |
| 82 void BroadcastEventToRenderers(const std::string& event_name, | 82 void BroadcastEventToRenderers(events::HistogramValue histogram_value, |
| 83 const std::string& event_name, |
| 83 scoped_ptr<base::ListValue> args) override; | 84 scoped_ptr<base::ListValue> args) override; |
| 84 net::NetLog* GetNetLog() override; | 85 net::NetLog* GetNetLog() override; |
| 85 ExtensionCache* GetExtensionCache() override; | 86 ExtensionCache* GetExtensionCache() override; |
| 86 bool IsBackgroundUpdateAllowed() override; | 87 bool IsBackgroundUpdateAllowed() override; |
| 87 bool IsMinBrowserVersionSupported(const std::string& min_version) override; | 88 bool IsMinBrowserVersionSupported(const std::string& min_version) override; |
| 88 ExtensionWebContentsObserver* GetExtensionWebContentsObserver( | 89 ExtensionWebContentsObserver* GetExtensionWebContentsObserver( |
| 89 content::WebContents* web_contents) override; | 90 content::WebContents* web_contents) override; |
| 90 | 91 |
| 91 // Sets the API client. | 92 // Sets the API client. |
| 92 void SetAPIClientForTest(ExtensionsAPIClient* api_client); | 93 void SetAPIClientForTest(ExtensionsAPIClient* api_client); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 103 | 104 |
| 104 // The extension cache used for download and installation. | 105 // The extension cache used for download and installation. |
| 105 scoped_ptr<ExtensionCache> extension_cache_; | 106 scoped_ptr<ExtensionCache> extension_cache_; |
| 106 | 107 |
| 107 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsBrowserClient); | 108 DISALLOW_COPY_AND_ASSIGN(ShellExtensionsBrowserClient); |
| 108 }; | 109 }; |
| 109 | 110 |
| 110 } // namespace extensions | 111 } // namespace extensions |
| 111 | 112 |
| 112 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ | 113 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_EXTENSIONS_BROWSER_CLIENT_H_ |
| OLD | NEW |