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

Unified Diff: extensions/shell/browser/shell_extension_system.cc

Issue 420543002: Declarative content scripts: Browser-side: per-extension shared memory regions (lazily loaded) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix nit and rebase from master Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/shell/browser/shell_extension_system.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 8c20401989a4dcf498f0e0279410bb79d2d7d4d2..47db358ba0c3091bcdf326224a2f96dc8998b233 100644
--- a/extensions/shell/browser/shell_extension_system.cc
+++ b/extensions/shell/browser/shell_extension_system.cc
@@ -112,7 +112,7 @@ ManagementPolicy* ShellExtensionSystem::management_policy() {
return NULL;
}
-UserScriptMaster* ShellExtensionSystem::user_script_master() {
+SharedUserScriptMaster* ShellExtensionSystem::shared_user_script_master() {
return NULL;
}
@@ -193,4 +193,10 @@ scoped_ptr<ExtensionSet> ShellExtensionSystem::GetDependentExtensions(
return empty.PassAs<ExtensionSet>();
}
+DeclarativeUserScriptMaster*
+ShellExtensionSystem::GetDeclarativeUserScriptMasterByExtension(
+ const ExtensionId& extension_id) {
+ return NULL;
+}
+
} // namespace extensions
« 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