| 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 "extensions/browser/api/device_permissions_prompt.h" | 8 #include "extensions/browser/api/device_permissions_prompt.h" |
| 9 #include "extensions/browser/api/virtual_keyboard_private/virtual_keyboard_deleg
ate.h" | 9 #include "extensions/browser/api/virtual_keyboard_private/virtual_keyboard_deleg
ate.h" |
| 10 #include "extensions/browser/api/web_request/web_request_event_router_delegate.h
" | 10 #include "extensions/browser/api/web_request/web_request_event_router_delegate.h
" |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 ExtensionsAPIClient::CreateDevicePermissionsPrompt( | 74 ExtensionsAPIClient::CreateDevicePermissionsPrompt( |
| 75 content::WebContents* web_contents) const { | 75 content::WebContents* web_contents) const { |
| 76 return nullptr; | 76 return nullptr; |
| 77 } | 77 } |
| 78 | 78 |
| 79 scoped_ptr<VirtualKeyboardDelegate> | 79 scoped_ptr<VirtualKeyboardDelegate> |
| 80 ExtensionsAPIClient::CreateVirtualKeyboardDelegate() const { | 80 ExtensionsAPIClient::CreateVirtualKeyboardDelegate() const { |
| 81 return nullptr; | 81 return nullptr; |
| 82 } | 82 } |
| 83 | 83 |
| 84 ManagementAPIDelegate* ExtensionsAPIClient::CreateManagementAPIDelegate() |
| 85 const { |
| 86 return nullptr; |
| 87 } |
| 88 |
| 84 } // namespace extensions | 89 } // namespace extensions |
| OLD | NEW |