| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 57 |
| 58 #if defined(OS_CHROMEOS) | 58 #if defined(OS_CHROMEOS) |
| 59 NonNativeFileSystemDelegate* GetNonNativeFileSystemDelegate() override; |
| 60 |
| 59 void SaveImageDataToClipboard( | 61 void SaveImageDataToClipboard( |
| 60 const std::vector<char>& image_data, | 62 const std::vector<char>& image_data, |
| 61 api::clipboard::ImageType type, | 63 api::clipboard::ImageType type, |
| 62 const base::Closure& success_callback, | 64 const base::Closure& success_callback, |
| 63 const base::Callback<void(const std::string&)>& error_callback) override; | 65 const base::Callback<void(const std::string&)>& error_callback) override; |
| 64 #endif | 66 #endif |
| 65 | 67 |
| 66 private: | 68 private: |
| 67 std::unique_ptr<ChromeMetricsPrivateDelegate> metrics_private_delegate_; | 69 std::unique_ptr<ChromeMetricsPrivateDelegate> metrics_private_delegate_; |
| 68 | 70 |
| 69 #if defined(OS_CHROMEOS) | 71 #if defined(OS_CHROMEOS) |
| 72 std::unique_ptr<NonNativeFileSystemDelegate> non_native_file_system_delegate_; |
| 70 std::unique_ptr<ClipboardExtensionHelper> clipboard_extension_helper_; | 73 std::unique_ptr<ClipboardExtensionHelper> clipboard_extension_helper_; |
| 71 #endif | 74 #endif |
| 72 | 75 |
| 73 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient); | 76 DISALLOW_COPY_AND_ASSIGN(ChromeExtensionsAPIClient); |
| 74 }; | 77 }; |
| 75 | 78 |
| 76 } // namespace extensions | 79 } // namespace extensions |
| 77 | 80 |
| 78 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ | 81 #endif // CHROME_BROWSER_EXTENSIONS_API_CHROME_EXTENSIONS_API_CLIENT_H_ |
| OLD | NEW |