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

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

Issue 696543002: Move the chrome.management API to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « extensions/browser/api/extensions_api_client.h ('k') | extensions/browser/api/management/management_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698