Index: chrome/browser/extensions/api/tabs/tabs_api.cc |
diff --git a/chrome/browser/extensions/api/tabs/tabs_api.cc b/chrome/browser/extensions/api/tabs/tabs_api.cc |
index 441f4221875776e3e7289624cdabc30fca17936f..e7e92f73e88c7fc0598eee30ec36df6462503327 100644 |
--- a/chrome/browser/extensions/api/tabs/tabs_api.cc |
+++ b/chrome/browser/extensions/api/tabs/tabs_api.cc |
@@ -1388,6 +1388,7 @@ bool TabsUpdateFunction::UpdateURLIfPresent(DictionaryValue* update_props, |
ScriptExecutor::TOP_FRAME, |
extensions::UserScript::DOCUMENT_IDLE, |
ScriptExecutor::MAIN_WORLD, |
+ false /* is_web_view */, |
base::Bind(&TabsUpdateFunction::OnExecuteCodeFinished, this)); |
*is_async = true; |
@@ -2131,6 +2132,7 @@ bool ExecuteCodeInTabFunction::Execute(const std::string& code_string) { |
frame_scope, |
run_at, |
ScriptExecutor::ISOLATED_WORLD, |
+ false /* is_web_view */, |
base::Bind(&ExecuteCodeInTabFunction::OnExecuteCodeFinished, this)); |
return true; |
} |