diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-14 00:25:12 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-14 00:25:12 +0000 |
commit | 0becd7bfab9d99c4c5aec30a4c26c635b5c211fd (patch) | |
tree | b15d4414aa05883e4b1f5792262e37aaf876a99b /chrome/renderer | |
parent | 9feef8238364b48734cc74418faef10275e48764 (diff) | |
download | chromium_src-0becd7bfab9d99c4c5aec30a4c26c635b5c211fd.zip chromium_src-0becd7bfab9d99c4c5aec30a4c26c635b5c211fd.tar.gz chromium_src-0becd7bfab9d99c4c5aec30a4c26c635b5c211fd.tar.bz2 |
Duplicating the SetActiveURL() change from the renderer to the plugin process. (Should also fix a plugin callback that may be clearing the renderer's URL prematurely.)
BUG=22033
TEST=None
Review URL: http://codereview.chromium.org/384130
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31971 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer')
-rw-r--r-- | chrome/renderer/webplugin_delegate_proxy.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/webplugin_delegate_proxy.cc b/chrome/renderer/webplugin_delegate_proxy.cc index 3853115..e2c27a6 100644 --- a/chrome/renderer/webplugin_delegate_proxy.cc +++ b/chrome/renderer/webplugin_delegate_proxy.cc @@ -351,7 +351,7 @@ void WebPluginDelegateProxy::InstallMissingPlugin() { } void WebPluginDelegateProxy::OnMessageReceived(const IPC::Message& msg) { - child_process_logging::ScopedActiveURLSetter url_setter(page_url_); + child_process_logging::SetActiveURL(page_url_); IPC_BEGIN_MESSAGE_MAP(WebPluginDelegateProxy, msg) IPC_MESSAGE_HANDLER(PluginHostMsg_SetWindow, OnSetWindow) |