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

Unified Diff: Source/web/WebRemoteFrameImpl.cpp

Issue 660863002: [DevTools] Added public method for async execution of scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: platform/WebExecuteScriptCallback -> web/WebScriptCallback Created 6 years, 2 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: Source/web/WebRemoteFrameImpl.cpp
diff --git a/Source/web/WebRemoteFrameImpl.cpp b/Source/web/WebRemoteFrameImpl.cpp
index 3d23b85bd385f1d22e704559378b6b9227c858a2..573a0f3e0cf58d011e044169bafc5c7b9b7c9c01 100644
--- a/Source/web/WebRemoteFrameImpl.cpp
+++ b/Source/web/WebRemoteFrameImpl.cpp
@@ -367,6 +367,12 @@ v8::Handle<v8::Value> WebRemoteFrameImpl::executeScriptAndReturnValue(
return v8::Handle<v8::Value>();
}
+void WebRemoteFrameImpl::executeScriptAndReturnValue(
+ const WebScriptSource&, WebScriptCallback* callback)
+{
+ ASSERT_NOT_REACHED();
+}
+
void WebRemoteFrameImpl::executeScriptInIsolatedWorld(
int worldID, const WebScriptSource* sourcesIn, unsigned numSources,
int extensionGroup, WebVector<v8::Local<v8::Value> >* results)
@@ -374,6 +380,13 @@ void WebRemoteFrameImpl::executeScriptInIsolatedWorld(
ASSERT_NOT_REACHED();
}
+void WebRemoteFrameImpl::executeScriptInIsolatedWorld(
+ int worldID, const WebScriptSource* sourcesIn, unsigned numSources,
+ int extensionGroup, WebScriptCallback* callback)
+{
+ ASSERT_NOT_REACHED();
+}
+
v8::Handle<v8::Value> WebRemoteFrameImpl::callFunctionEvenIfScriptDisabled(
v8::Handle<v8::Function>,
v8::Handle<v8::Value>,

Powered by Google App Engine
This is Rietveld 408576698