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

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

Issue 1152983004: Move ObserverList to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « extensions/browser/api/extensions_api_client.h ('k') | ipc/ipc_test_sink.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 10 matching lines...) Expand all
21 ExtensionsAPIClient::ExtensionsAPIClient() { g_instance = this; } 21 ExtensionsAPIClient::ExtensionsAPIClient() { g_instance = this; }
22 22
23 ExtensionsAPIClient::~ExtensionsAPIClient() { g_instance = NULL; } 23 ExtensionsAPIClient::~ExtensionsAPIClient() { g_instance = NULL; }
24 24
25 // static 25 // static
26 ExtensionsAPIClient* ExtensionsAPIClient::Get() { return g_instance; } 26 ExtensionsAPIClient* ExtensionsAPIClient::Get() { return g_instance; }
27 27
28 void ExtensionsAPIClient::AddAdditionalValueStoreCaches( 28 void ExtensionsAPIClient::AddAdditionalValueStoreCaches(
29 content::BrowserContext* context, 29 content::BrowserContext* context,
30 const scoped_refptr<SettingsStorageFactory>& factory, 30 const scoped_refptr<SettingsStorageFactory>& factory,
31 const scoped_refptr<ObserverListThreadSafe<SettingsObserver> >& observers, 31 const scoped_refptr<base::ObserverListThreadSafe<SettingsObserver>>&
32 std::map<settings_namespace::Namespace, ValueStoreCache*>* caches) {} 32 observers,
33 std::map<settings_namespace::Namespace, ValueStoreCache*>* caches) {
34 }
33 35
34 AppViewGuestDelegate* ExtensionsAPIClient::CreateAppViewGuestDelegate() const { 36 AppViewGuestDelegate* ExtensionsAPIClient::CreateAppViewGuestDelegate() const {
35 return NULL; 37 return NULL;
36 } 38 }
37 39
38 ExtensionOptionsGuestDelegate* 40 ExtensionOptionsGuestDelegate*
39 ExtensionsAPIClient::CreateExtensionOptionsGuestDelegate( 41 ExtensionsAPIClient::CreateExtensionOptionsGuestDelegate(
40 ExtensionOptionsGuest* guest) const { 42 ExtensionOptionsGuest* guest) const {
41 return NULL; 43 return NULL;
42 } 44 }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 ExtensionsAPIClient::CreateVirtualKeyboardDelegate() const { 88 ExtensionsAPIClient::CreateVirtualKeyboardDelegate() const {
87 return nullptr; 89 return nullptr;
88 } 90 }
89 91
90 ManagementAPIDelegate* ExtensionsAPIClient::CreateManagementAPIDelegate() 92 ManagementAPIDelegate* ExtensionsAPIClient::CreateManagementAPIDelegate()
91 const { 93 const {
92 return nullptr; 94 return nullptr;
93 } 95 }
94 96
95 } // namespace extensions 97 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/api/extensions_api_client.h ('k') | ipc/ipc_test_sink.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698