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

Unified Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Issue 2728303006: Add AllowUserAgentScript to WebFrame::callFunctionEvenIfScriptDisabled. (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
index cb38d4bac6eddaab09f30c0080a9bf208f8f4848..a5f83279774d6d46784f28319f862ce7dd03fda6 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
@@ -817,6 +817,7 @@ v8::Local<v8::Value> WebLocalFrameImpl::callFunctionEvenIfScriptDisabled(
int argc,
v8::Local<v8::Value> argv[]) {
DCHECK(frame());
+ ScriptForbiddenScope::AllowUserAgentScript allowScriptingEvenIfForbidden;
v8::Local<v8::Value> result;
if (!V8ScriptRunner::callFunction(
function, frame()->document(), receiver, argc,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698