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

Side by Side Diff: extensions/browser/mock_extension_system.cc

Issue 503033002: Move ExtensionWarningService and ExtensionsWarningSet to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@3_web_view_internal
Patch Set: rebase 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
« no previous file with comments | « extensions/browser/mock_extension_system.h ('k') | extensions/browser/warning_service.h » ('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/mock_extension_system.h" 5 #include "extensions/browser/mock_extension_system.h"
6 6
7 #include "extensions/common/extension_set.h" 7 #include "extensions/common/extension_set.h"
8 8
9 namespace extensions { 9 namespace extensions {
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 } 55 }
56 56
57 LazyBackgroundTaskQueue* MockExtensionSystem::lazy_background_task_queue() { 57 LazyBackgroundTaskQueue* MockExtensionSystem::lazy_background_task_queue() {
58 return NULL; 58 return NULL;
59 } 59 }
60 60
61 EventRouter* MockExtensionSystem::event_router() { 61 EventRouter* MockExtensionSystem::event_router() {
62 return NULL; 62 return NULL;
63 } 63 }
64 64
65 ExtensionWarningService* MockExtensionSystem::warning_service() { 65 WarningService* MockExtensionSystem::warning_service() {
66 return NULL; 66 return NULL;
67 } 67 }
68 68
69 Blacklist* MockExtensionSystem::blacklist() { 69 Blacklist* MockExtensionSystem::blacklist() {
70 return NULL; 70 return NULL;
71 } 71 }
72 72
73 ErrorConsole* MockExtensionSystem::error_console() { 73 ErrorConsole* MockExtensionSystem::error_console() {
74 return NULL; 74 return NULL;
75 } 75 }
(...skipping 19 matching lines...) Expand all
95 const ExtensionId& extension_id) { 95 const ExtensionId& extension_id) {
96 return NULL; 96 return NULL;
97 } 97 }
98 98
99 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( 99 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions(
100 const Extension* extension) { 100 const Extension* extension) {
101 return scoped_ptr<ExtensionSet>(); 101 return scoped_ptr<ExtensionSet>();
102 } 102 }
103 103
104 } // namespace extensions 104 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/mock_extension_system.h ('k') | extensions/browser/warning_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698