| 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 CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "extensions/browser/api/extensions_api_client.h" | 10 #include "extensions/browser/api/extensions_api_client.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 std::unique_ptr<WebRequestEventRouterDelegate> | 43 std::unique_ptr<WebRequestEventRouterDelegate> |
| 44 CreateWebRequestEventRouterDelegate() const override; | 44 CreateWebRequestEventRouterDelegate() const override; |
| 45 scoped_refptr<ContentRulesRegistry> CreateContentRulesRegistry( | 45 scoped_refptr<ContentRulesRegistry> CreateContentRulesRegistry( |
| 46 content::BrowserContext* browser_context, | 46 content::BrowserContext* browser_context, |
| 47 RulesCacheDelegate* cache_delegate) const override; | 47 RulesCacheDelegate* cache_delegate) const override; |
| 48 std::unique_ptr<DevicePermissionsPrompt> CreateDevicePermissionsPrompt( | 48 std::unique_ptr<DevicePermissionsPrompt> CreateDevicePermissionsPrompt( |
| 49 content::WebContents* web_contents) const override; | 49 content::WebContents* web_contents) const override; |
| 50 std::unique_ptr<VirtualKeyboardDelegate> CreateVirtualKeyboardDelegate() | 50 std::unique_ptr<VirtualKeyboardDelegate> CreateVirtualKeyboardDelegate() |
| 51 const override; | 51 const override; |
| 52 ManagementAPIDelegate* CreateManagementAPIDelegate() const override; | 52 ManagementAPIDelegate* CreateManagementAPIDelegate() const override; |
| 53 std::unique_ptr<MetricsPrivateDelegate> CreateMetricsPrivateDelegate() |
| 54 const override; |
| 53 | 55 |
| 54 private: | 56 private: |
| 55 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient); | 57 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient); |
| 56 }; | 58 }; |
| 57 | 59 |
| 58 } // namespace extensions | 60 } // namespace extensions |
| 59 | 61 |
| 60 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ | 62 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ |
| OLD | NEW |