| 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 "extensions/browser/api/extensions_api_client.h" | 9 #include "extensions/browser/api/extensions_api_client.h" |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 WebViewPermissionHelper* web_view_permission_helper) const override; | 34 WebViewPermissionHelper* web_view_permission_helper) const override; |
| 35 WebRequestEventRouterDelegate* CreateWebRequestEventRouterDelegate() | 35 WebRequestEventRouterDelegate* CreateWebRequestEventRouterDelegate() |
| 36 const override; | 36 const override; |
| 37 scoped_refptr<ContentRulesRegistry> CreateContentRulesRegistry( | 37 scoped_refptr<ContentRulesRegistry> CreateContentRulesRegistry( |
| 38 content::BrowserContext* browser_context, | 38 content::BrowserContext* browser_context, |
| 39 RulesCacheDelegate* cache_delegate) const override; | 39 RulesCacheDelegate* cache_delegate) const override; |
| 40 scoped_ptr<DevicePermissionsPrompt> CreateDevicePermissionsPrompt( | 40 scoped_ptr<DevicePermissionsPrompt> CreateDevicePermissionsPrompt( |
| 41 content::WebContents* web_contents) const override; | 41 content::WebContents* web_contents) const override; |
| 42 scoped_ptr<VirtualKeyboardDelegate> CreateVirtualKeyboardDelegate() | 42 scoped_ptr<VirtualKeyboardDelegate> CreateVirtualKeyboardDelegate() |
| 43 const override; | 43 const override; |
| 44 ManagementAPIDelegate* CreateManagementAPIDelegate() const override; |
| 44 | 45 |
| 45 private: | 46 private: |
| 46 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient); | 47 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient); |
| 47 }; | 48 }; |
| 48 | 49 |
| 49 } // namespace extensions | 50 } // namespace extensions |
| 50 | 51 |
| 51 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ | 52 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ |
| OLD | NEW |