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

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

Issue 556563003: Move ExtensionOptionsGuest code from chrome to extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 8
9 namespace extensions { 9 namespace extensions {
10 class AppViewGuestDelegate; 10 class AppViewGuestDelegate;
(...skipping 12 matching lines...) Expand all
23 void ExtensionsAPIClient::AddAdditionalValueStoreCaches( 23 void ExtensionsAPIClient::AddAdditionalValueStoreCaches(
24 content::BrowserContext* context, 24 content::BrowserContext* context,
25 const scoped_refptr<SettingsStorageFactory>& factory, 25 const scoped_refptr<SettingsStorageFactory>& factory,
26 const scoped_refptr<ObserverListThreadSafe<SettingsObserver> >& observers, 26 const scoped_refptr<ObserverListThreadSafe<SettingsObserver> >& observers,
27 std::map<settings_namespace::Namespace, ValueStoreCache*>* caches) {} 27 std::map<settings_namespace::Namespace, ValueStoreCache*>* caches) {}
28 28
29 AppViewGuestDelegate* ExtensionsAPIClient::CreateAppViewGuestDelegate() const { 29 AppViewGuestDelegate* ExtensionsAPIClient::CreateAppViewGuestDelegate() const {
30 return NULL; 30 return NULL;
31 } 31 }
32 32
33 ExtensionOptionsGuestDelegate*
34 ExtensionsAPIClient::CreateExtensionOptionsGuestDelegate() const {
35 return NULL;
36 }
37
33 WebViewGuestDelegate* ExtensionsAPIClient::CreateWebViewGuestDelegate( 38 WebViewGuestDelegate* ExtensionsAPIClient::CreateWebViewGuestDelegate(
34 WebViewGuest* web_view_guest) const { 39 WebViewGuest* web_view_guest) const {
35 return NULL; 40 return NULL;
36 } 41 }
37 42
38 WebViewPermissionHelperDelegate* ExtensionsAPIClient:: 43 WebViewPermissionHelperDelegate* ExtensionsAPIClient::
39 CreateWebViewPermissionHelperDelegate( 44 CreateWebViewPermissionHelperDelegate(
40 WebViewPermissionHelper* web_view_permission_helper) const { 45 WebViewPermissionHelper* web_view_permission_helper) const {
41 return NULL; 46 return NULL;
42 } 47 }
43 48
44 } // namespace extensions 49 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698