| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 CreateWebRequestEventRouterDelegate() const override; | 47 CreateWebRequestEventRouterDelegate() const override; |
| 48 scoped_refptr<ContentRulesRegistry> CreateContentRulesRegistry( | 48 scoped_refptr<ContentRulesRegistry> CreateContentRulesRegistry( |
| 49 content::BrowserContext* browser_context, | 49 content::BrowserContext* browser_context, |
| 50 RulesCacheDelegate* cache_delegate) const override; | 50 RulesCacheDelegate* cache_delegate) const override; |
| 51 std::unique_ptr<DevicePermissionsPrompt> CreateDevicePermissionsPrompt( | 51 std::unique_ptr<DevicePermissionsPrompt> CreateDevicePermissionsPrompt( |
| 52 content::WebContents* web_contents) const override; | 52 content::WebContents* web_contents) const override; |
| 53 std::unique_ptr<VirtualKeyboardDelegate> CreateVirtualKeyboardDelegate() | 53 std::unique_ptr<VirtualKeyboardDelegate> CreateVirtualKeyboardDelegate() |
| 54 const override; | 54 const override; |
| 55 ManagementAPIDelegate* CreateManagementAPIDelegate() const override; | 55 ManagementAPIDelegate* CreateManagementAPIDelegate() const override; |
| 56 MetricsPrivateDelegate* GetMetricsPrivateDelegate() override; | 56 MetricsPrivateDelegate* GetMetricsPrivateDelegate() override; |
| 57 NetworkingCastPrivateDelegate* GetNetworkingCastPrivateDelegate() override; |
| 57 | 58 |
| 58 #if defined(OS_CHROMEOS) | 59 #if defined(OS_CHROMEOS) |
| 59 NonNativeFileSystemDelegate* GetNonNativeFileSystemDelegate() override; | 60 NonNativeFileSystemDelegate* GetNonNativeFileSystemDelegate() override; |
| 60 | 61 |
| 61 void SaveImageDataToClipboard( | 62 void SaveImageDataToClipboard( |
| 62 const std::vector<char>& image_data, | 63 const std::vector<char>& image_data, |
| 63 api::clipboard::ImageType type, | 64 api::clipboard::ImageType type, |
| 64 const base::Closure& success_callback, | 65 const base::Closure& success_callback, |
| 65 const base::Callback<void(const std::string&)>& error_callback) override; | 66 const base::Callback<void(const std::string&)>& error_callback) override; |
| 66 #endif | 67 #endif |
| 67 | 68 |
| 68 private: | 69 private: |
| 69 std::unique_ptr<ChromeMetricsPrivateDelegate> metrics_private_delegate_; | 70 std::unique_ptr<ChromeMetricsPrivateDelegate> metrics_private_delegate_; |
| 71 std::unique_ptr<NetworkingCastPrivateDelegate> |
| 72 networking_cast_private_delegate_; |
| 70 | 73 |
| 71 #if defined(OS_CHROMEOS) | 74 #if defined(OS_CHROMEOS) |
| 72 std::unique_ptr<NonNativeFileSystemDelegate> non_native_file_system_delegate_; | 75 std::unique_ptr<NonNativeFileSystemDelegate> non_native_file_system_delegate_; |
| 73 std::unique_ptr<ClipboardExtensionHelper> clipboard_extension_helper_; | 76 std::unique_ptr<ClipboardExtensionHelper> clipboard_extension_helper_; |
| 74 #endif | 77 #endif |
| 75 | 78 |
| 76 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient); | 79 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient); |
| 77 }; | 80 }; |
| 78 | 81 |
| 79 } // namespace extensions | 82 } // namespace extensions |
| 80 | 83 |
| 81 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ | 84 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ |
| OLD | NEW |