diff options
Diffstat (limited to 'chrome/renderer/webplugin_delegate_proxy.cc')
-rw-r--r-- | chrome/renderer/webplugin_delegate_proxy.cc | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/chrome/renderer/webplugin_delegate_proxy.cc b/chrome/renderer/webplugin_delegate_proxy.cc index 56da66c..c72c654 100644 --- a/chrome/renderer/webplugin_delegate_proxy.cc +++ b/chrome/renderer/webplugin_delegate_proxy.cc @@ -306,8 +306,8 @@ bool WebPluginDelegateProxy::Send(IPC::Message* msg) { return channel_host_->Send(msg); } -void WebPluginDelegateProxy::SendJavaScriptStream(const std::string& url, - const std::wstring& result, +void WebPluginDelegateProxy::SendJavaScriptStream(const GURL& url, + const std::string& result, bool success, bool notify_needed, intptr_t notify_data) { @@ -756,8 +756,10 @@ NPObject* WebPluginDelegateProxy::GetPluginScriptableObject() { return WebBindings::retainObject(npobject_); } -void WebPluginDelegateProxy::DidFinishLoadWithReason(NPReason reason) { - Send(new PluginMsg_DidFinishLoadWithReason(instance_id_, reason)); +void WebPluginDelegateProxy::DidFinishLoadWithReason( + const GURL& url, NPReason reason, intptr_t notify_data) { + Send(new PluginMsg_DidFinishLoadWithReason( + instance_id_, url, reason, notify_data)); } void WebPluginDelegateProxy::SetFocus() { @@ -1056,13 +1058,6 @@ WebPluginResourceClient* WebPluginDelegateProxy::CreateResourceClient( return proxy; } -void WebPluginDelegateProxy::URLRequestRouted(const std::string& url, - bool notify_needed, - intptr_t notify_data) { - Send(new PluginMsg_URLRequestRouted(instance_id_, url, notify_needed, - notify_data)); -} - void WebPluginDelegateProxy::OnCancelDocumentLoad() { plugin_->CancelDocumentLoad(); } |