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

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

Issue 1132113008: Extract DeclarativeUserScriptManager from ExtensionSystem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 } 114 }
115 115
116 ManagementPolicy* ShellExtensionSystem::management_policy() { 116 ManagementPolicy* ShellExtensionSystem::management_policy() {
117 return nullptr; 117 return nullptr;
118 } 118 }
119 119
120 SharedUserScriptMaster* ShellExtensionSystem::shared_user_script_master() { 120 SharedUserScriptMaster* ShellExtensionSystem::shared_user_script_master() {
121 return nullptr; 121 return nullptr;
122 } 122 }
123 123
124 DeclarativeUserScriptManager*
125 ShellExtensionSystem::declarative_user_script_manager() {
126 return nullptr;
127 }
128
129 StateStore* ShellExtensionSystem::state_store() { 124 StateStore* ShellExtensionSystem::state_store() {
130 return nullptr; 125 return nullptr;
131 } 126 }
132 127
133 StateStore* ShellExtensionSystem::rules_store() { 128 StateStore* ShellExtensionSystem::rules_store() {
134 return nullptr; 129 return nullptr;
135 } 130 }
136 131
137 InfoMap* ShellExtensionSystem::info_map() { 132 InfoMap* ShellExtensionSystem::info_map() {
138 if (!info_map_.get()) 133 if (!info_map_.get())
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 ContentVerifier* ShellExtensionSystem::content_verifier() { 175 ContentVerifier* ShellExtensionSystem::content_verifier() {
181 return nullptr; 176 return nullptr;
182 } 177 }
183 178
184 scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions( 179 scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions(
185 const Extension* extension) { 180 const Extension* extension) {
186 return make_scoped_ptr(new ExtensionSet()); 181 return make_scoped_ptr(new ExtensionSet());
187 } 182 }
188 183
189 } // namespace extensions 184 } // 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