| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 | 101 |
| 102 MetricsPrivateDelegate* ExtensionsAPIClient::GetMetricsPrivateDelegate() { | 102 MetricsPrivateDelegate* ExtensionsAPIClient::GetMetricsPrivateDelegate() { |
| 103 return nullptr; | 103 return nullptr; |
| 104 } | 104 } |
| 105 | 105 |
| 106 NetworkingCastPrivateDelegate* | 106 NetworkingCastPrivateDelegate* |
| 107 ExtensionsAPIClient::GetNetworkingCastPrivateDelegate() { | 107 ExtensionsAPIClient::GetNetworkingCastPrivateDelegate() { |
| 108 return nullptr; | 108 return nullptr; |
| 109 } | 109 } |
| 110 | 110 |
| 111 FileSystemDelegate* ExtensionsAPIClient::GetFileSystemDelegate() { |
| 112 return nullptr; |
| 113 } |
| 114 |
| 111 #if defined(OS_CHROMEOS) | 115 #if defined(OS_CHROMEOS) |
| 112 NonNativeFileSystemDelegate* | 116 NonNativeFileSystemDelegate* |
| 113 ExtensionsAPIClient::GetNonNativeFileSystemDelegate() { | 117 ExtensionsAPIClient::GetNonNativeFileSystemDelegate() { |
| 114 return nullptr; | 118 return nullptr; |
| 115 } | 119 } |
| 116 | 120 |
| 117 void ExtensionsAPIClient::SaveImageDataToClipboard( | 121 void ExtensionsAPIClient::SaveImageDataToClipboard( |
| 118 const std::vector<char>& image_data, | 122 const std::vector<char>& image_data, |
| 119 api::clipboard::ImageType type, | 123 api::clipboard::ImageType type, |
| 120 AdditionalDataItemList additional_items, | 124 AdditionalDataItemList additional_items, |
| 121 const base::Closure& success_callback, | 125 const base::Closure& success_callback, |
| 122 const base::Callback<void(const std::string&)>& error_callback) {} | 126 const base::Callback<void(const std::string&)>& error_callback) {} |
| 123 #endif | 127 #endif |
| 124 | 128 |
| 125 } // namespace extensions | 129 } // namespace extensions |
| OLD | NEW |