| 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>,
|
|
|