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

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

Issue 959413003: Implement <webview>.addContentScript/removeContentScript API [1] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make the API work before the first navigation of guest. Created 5 years, 9 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
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 5b0cd525dce1020b78e186db5bfed428f2683ed4..30c4db2a708a18cc8d539fac1cff410a86822a53 100644
--- a/extensions/shell/browser/shell_extension_system.cc
+++ b/extensions/shell/browser/shell_extension_system.cc
@@ -160,6 +160,11 @@ QuotaService* ShellExtensionSystem::quota_service() {
return quota_service_.get();
}
+WebViewContentScriptManager*
+ShellExtensionSystem::web_view_content_script_manager() {
+ return nullptr;
+}
+
void ShellExtensionSystem::RegisterExtensionWithRequestContexts(
const Extension* extension) {
BrowserThread::PostTask(BrowserThread::IO,

Powered by Google App Engine
This is Rietveld 408576698