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

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

Issue 796453003: Introduce DeclarativeUserScriptManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
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 NULL; 117 return NULL;
118 } 118 }
119 119
120 SharedUserScriptMaster* ShellExtensionSystem::shared_user_script_master() { 120 SharedUserScriptMaster* ShellExtensionSystem::shared_user_script_master() {
121 return NULL; 121 return NULL;
122 } 122 }
123 123
124 DeclarativeUserScriptManager*
125 ShellExtensionSystem::declarative_user_script_manager() {
126 return NULL;
127 }
128
124 StateStore* ShellExtensionSystem::state_store() { 129 StateStore* ShellExtensionSystem::state_store() {
125 return NULL; 130 return NULL;
126 } 131 }
127 132
128 StateStore* ShellExtensionSystem::rules_store() { 133 StateStore* ShellExtensionSystem::rules_store() {
129 return NULL; 134 return NULL;
130 } 135 }
131 136
132 InfoMap* ShellExtensionSystem::info_map() { 137 InfoMap* ShellExtensionSystem::info_map() {
133 if (!info_map_.get()) 138 if (!info_map_.get())
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 183
179 ContentVerifier* ShellExtensionSystem::content_verifier() { 184 ContentVerifier* ShellExtensionSystem::content_verifier() {
180 return NULL; 185 return NULL;
181 } 186 }
182 187
183 scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions( 188 scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions(
184 const Extension* extension) { 189 const Extension* extension) {
185 return make_scoped_ptr(new ExtensionSet()); 190 return make_scoped_ptr(new ExtensionSet());
186 } 191 }
187 192
188 DeclarativeUserScriptMaster*
189 ShellExtensionSystem::GetDeclarativeUserScriptMasterByExtension(
190 const ExtensionId& extension_id) {
191 return NULL;
192 }
193
194 } // namespace extensions 193 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698