| 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 #include "extensions/browser/api/extensions_api_client.h" | 5 #include "extensions/browser/api/extensions_api_client.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 9 #include "extensions/browser/api/device_permissions_prompt.h" | 9 #include "extensions/browser/api/device_permissions_prompt.h" |
| 10 #include "extensions/browser/api/virtual_keyboard_private/virtual_keyboard_deleg
ate.h" | 10 #include "extensions/browser/api/virtual_keyboard_private/virtual_keyboard_deleg
ate.h" |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 ManagementAPIDelegate* ExtensionsAPIClient::CreateManagementAPIDelegate() | 97 ManagementAPIDelegate* ExtensionsAPIClient::CreateManagementAPIDelegate() |
| 98 const { | 98 const { |
| 99 return nullptr; | 99 return nullptr; |
| 100 } | 100 } |
| 101 | 101 |
| 102 MetricsPrivateDelegate* ExtensionsAPIClient::GetMetricsPrivateDelegate() { | 102 MetricsPrivateDelegate* ExtensionsAPIClient::GetMetricsPrivateDelegate() { |
| 103 return nullptr; | 103 return nullptr; |
| 104 } | 104 } |
| 105 | 105 |
| 106 NetworkingCastDelegate* ExtensionsAPIClient::GetNetworkingCastDelegate() { |
| 107 return nullptr; |
| 108 } |
| 109 |
| 106 #if defined(OS_CHROMEOS) | 110 #if defined(OS_CHROMEOS) |
| 107 NonNativeFileSystemDelegate* | 111 NonNativeFileSystemDelegate* |
| 108 ExtensionsAPIClient::GetNonNativeFileSystemDelegate() { | 112 ExtensionsAPIClient::GetNonNativeFileSystemDelegate() { |
| 109 return nullptr; | 113 return nullptr; |
| 110 } | 114 } |
| 111 | 115 |
| 112 void ExtensionsAPIClient::SaveImageDataToClipboard( | 116 void ExtensionsAPIClient::SaveImageDataToClipboard( |
| 113 const std::vector<char>& image_data, | 117 const std::vector<char>& image_data, |
| 114 api::clipboard::ImageType type, | 118 api::clipboard::ImageType type, |
| 115 const base::Closure& success_callback, | 119 const base::Closure& success_callback, |
| 116 const base::Callback<void(const std::string&)>& error_callback) {} | 120 const base::Callback<void(const std::string&)>& error_callback) {} |
| 117 #endif | 121 #endif |
| 118 | 122 |
| 119 } // namespace extensions | 123 } // namespace extensions |
| OLD | NEW |