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

Unified 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: Use map to store the DeclarativeUserScriptMaster objects. 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 side-by-side diff with in-line comments
Download patch
Index: extensions/shell/browser/shell_extension_system.cc
diff --git a/extensions/shell/browser/shell_extension_system.cc b/extensions/shell/browser/shell_extension_system.cc
index ef7bc5760f8c5f5ae3589611ab899e9d3064ca5d..58f8b643877f4d6db561febaa95d67cc36f815cf 100644
--- a/extensions/shell/browser/shell_extension_system.cc
+++ b/extensions/shell/browser/shell_extension_system.cc
@@ -121,6 +121,11 @@ SharedUserScriptMaster* ShellExtensionSystem::shared_user_script_master() {
return NULL;
}
+DeclarativeUserScriptManager*
+ShellExtensionSystem::declarative_user_script_manager() {
+ return NULL;
Devlin 2014/12/12 18:08:07 nit: nullptr.
Xi Han 2014/12/12 19:47:24 Done.
+}
+
StateStore* ShellExtensionSystem::state_store() {
return NULL;
}
@@ -185,10 +190,4 @@ scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions(
return make_scoped_ptr(new ExtensionSet());
}
-DeclarativeUserScriptMaster*
-ShellExtensionSystem::GetDeclarativeUserScriptMasterByExtension(
- const ExtensionId& extension_id) {
- return NULL;
-}
-
} // namespace extensions
« extensions/browser/extension_system.h ('K') | « 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