Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1050)

Side by Side Diff: extensions/browser/api/extensions_api_client.cc

Issue 873933002: Add <extensionview> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Initial Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 23 matching lines...) Expand all
34 AppViewGuestDelegate* ExtensionsAPIClient::CreateAppViewGuestDelegate() const { 34 AppViewGuestDelegate* ExtensionsAPIClient::CreateAppViewGuestDelegate() const {
35 return NULL; 35 return NULL;
36 } 36 }
37 37
38 ExtensionOptionsGuestDelegate* 38 ExtensionOptionsGuestDelegate*
39 ExtensionsAPIClient::CreateExtensionOptionsGuestDelegate( 39 ExtensionsAPIClient::CreateExtensionOptionsGuestDelegate(
40 ExtensionOptionsGuest* guest) const { 40 ExtensionOptionsGuest* guest) const {
41 return NULL; 41 return NULL;
42 } 42 }
43 43
44 ExtensionViewGuestDelegate*
45 ExtensionsAPIClient::CreateExtensionViewGuestDelegate(
46 ExtensionViewGuest* guest) const {
47 return NULL;
48 }
49
44 scoped_ptr<MimeHandlerViewGuestDelegate> 50 scoped_ptr<MimeHandlerViewGuestDelegate>
45 ExtensionsAPIClient::CreateMimeHandlerViewGuestDelegate( 51 ExtensionsAPIClient::CreateMimeHandlerViewGuestDelegate(
46 MimeHandlerViewGuest* guest) const { 52 MimeHandlerViewGuest* guest) const {
47 return scoped_ptr<MimeHandlerViewGuestDelegate>(); 53 return scoped_ptr<MimeHandlerViewGuestDelegate>();
48 } 54 }
49 55
50 WebViewGuestDelegate* ExtensionsAPIClient::CreateWebViewGuestDelegate( 56 WebViewGuestDelegate* ExtensionsAPIClient::CreateWebViewGuestDelegate(
51 WebViewGuest* web_view_guest) const { 57 WebViewGuest* web_view_guest) const {
52 return NULL; 58 return NULL;
53 } 59 }
(...skipping 26 matching lines...) Expand all
80 ExtensionsAPIClient::CreateVirtualKeyboardDelegate() const { 86 ExtensionsAPIClient::CreateVirtualKeyboardDelegate() const {
81 return nullptr; 87 return nullptr;
82 } 88 }
83 89
84 ManagementAPIDelegate* ExtensionsAPIClient::CreateManagementAPIDelegate() 90 ManagementAPIDelegate* ExtensionsAPIClient::CreateManagementAPIDelegate()
85 const { 91 const {
86 return nullptr; 92 return nullptr;
87 } 93 }
88 94
89 } // namespace extensions 95 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698