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

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

Issue 698623002: Split WarningService from ExtensionSystem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: virtual -> override 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 WarningService* ShellExtensionSystem::warning_service() {
145 return NULL;
146 }
147
148 Blacklist* ShellExtensionSystem::blacklist() { 144 Blacklist* ShellExtensionSystem::blacklist() {
149 return NULL; 145 return NULL;
150 } 146 }
151 147
152 ErrorConsole* ShellExtensionSystem::error_console() { 148 ErrorConsole* ShellExtensionSystem::error_console() {
153 return NULL; 149 return NULL;
154 } 150 }
155 151
156 InstallVerifier* ShellExtensionSystem::install_verifier() { 152 InstallVerifier* ShellExtensionSystem::install_verifier() {
157 return NULL; 153 return NULL;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 return make_scoped_ptr(new ExtensionSet()); 187 return make_scoped_ptr(new ExtensionSet());
192 } 188 }
193 189
194 DeclarativeUserScriptMaster* 190 DeclarativeUserScriptMaster*
195 ShellExtensionSystem::GetDeclarativeUserScriptMasterByExtension( 191 ShellExtensionSystem::GetDeclarativeUserScriptMasterByExtension(
196 const ExtensionId& extension_id) { 192 const ExtensionId& extension_id) {
197 return NULL; 193 return NULL;
198 } 194 }
199 195
200 } // namespace extensions 196 } // 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