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

Unified Diff: extensions/browser/mock_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/browser/mock_extension_system.h ('k') | extensions/common/user_script.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/mock_extension_system.cc
diff --git a/extensions/browser/mock_extension_system.cc b/extensions/browser/mock_extension_system.cc
index 3c38eac14154ccfbfc5ff6e1554082c139cf8dfc..d11c398dc87a85b2345daebed20134c35e2edf7f 100644
--- a/extensions/browser/mock_extension_system.cc
+++ b/extensions/browser/mock_extension_system.cc
@@ -34,7 +34,7 @@ ManagementPolicy* MockExtensionSystem::management_policy() {
return NULL;
}
-UserScriptMaster* MockExtensionSystem::user_script_master() {
+SharedUserScriptMaster* MockExtensionSystem::shared_user_script_master() {
return NULL;
}
@@ -90,6 +90,12 @@ ContentVerifier* MockExtensionSystem::content_verifier() {
return NULL;
}
+DeclarativeUserScriptMaster*
+ MockExtensionSystem::GetDeclarativeUserScriptMasterByExtension(
+ const ExtensionId& extension_id) {
+ return NULL;
+}
+
scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions(
const Extension* extension) {
return scoped_ptr<ExtensionSet>();
« no previous file with comments | « extensions/browser/mock_extension_system.h ('k') | extensions/common/user_script.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698