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

Side by Side Diff: extensions/shell/browser/shell_extension_system.cc

Issue 698553002: Split Blacklist from ExtensionSystem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. 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
« no previous file with comments | « extensions/shell/browser/shell_extension_system.h ('k') | no next file » | 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/shell/browser/shell_extension_system.h" 5 #include "extensions/shell/browser/shell_extension_system.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/files/file_util.h" 10 #include "base/files/file_util.h"
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 } 134 }
135 135
136 LazyBackgroundTaskQueue* ShellExtensionSystem::lazy_background_task_queue() { 136 LazyBackgroundTaskQueue* ShellExtensionSystem::lazy_background_task_queue() {
137 return lazy_background_task_queue_.get(); 137 return lazy_background_task_queue_.get();
138 } 138 }
139 139
140 EventRouter* ShellExtensionSystem::event_router() { 140 EventRouter* ShellExtensionSystem::event_router() {
141 return event_router_.get(); 141 return event_router_.get();
142 } 142 }
143 143
144 Blacklist* ShellExtensionSystem::blacklist() {
145 return NULL;
146 }
147
148 ErrorConsole* ShellExtensionSystem::error_console() { 144 ErrorConsole* ShellExtensionSystem::error_console() {
149 return NULL; 145 return NULL;
150 } 146 }
151 147
152 InstallVerifier* ShellExtensionSystem::install_verifier() { 148 InstallVerifier* ShellExtensionSystem::install_verifier() {
153 return NULL; 149 return NULL;
154 } 150 }
155 151
156 QuotaService* ShellExtensionSystem::quota_service() { 152 QuotaService* ShellExtensionSystem::quota_service() {
157 return quota_service_.get(); 153 return quota_service_.get();
(...skipping 29 matching lines...) Expand all
187 return make_scoped_ptr(new ExtensionSet()); 183 return make_scoped_ptr(new ExtensionSet());
188 } 184 }
189 185
190 DeclarativeUserScriptMaster* 186 DeclarativeUserScriptMaster*
191 ShellExtensionSystem::GetDeclarativeUserScriptMasterByExtension( 187 ShellExtensionSystem::GetDeclarativeUserScriptMasterByExtension(
192 const ExtensionId& extension_id) { 188 const ExtensionId& extension_id) {
193 return NULL; 189 return NULL;
194 } 190 }
195 191
196 } // namespace extensions 192 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/shell/browser/shell_extension_system.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698