diff options
author | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 00:26:37 +0000 |
---|---|---|
committer | stuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 00:26:37 +0000 |
commit | 5273b24e7e1619b1f3166a537d002523037c72f6 (patch) | |
tree | abb236f74725a87f8e2eb340b8594325cbfc4b9d | |
parent | 246900c12432b19bda657b8878388816bcf008ba (diff) | |
download | chromium_src-5273b24e7e1619b1f3166a537d002523037c72f6.zip chromium_src-5273b24e7e1619b1f3166a537d002523037c72f6.tar.gz chromium_src-5273b24e7e1619b1f3166a537d002523037c72f6.tar.bz2 |
Pass the right argument when fixing up stale plugin location on the Mac
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/612003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39168 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/glue/plugins/webplugin_delegate_impl_mac.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/plugins/webplugin_delegate_impl_mac.mm b/webkit/glue/plugins/webplugin_delegate_impl_mac.mm index 05a0f91..c493109 100644 --- a/webkit/glue/plugins/webplugin_delegate_impl_mac.mm +++ b/webkit/glue/plugins/webplugin_delegate_impl_mac.mm @@ -943,7 +943,7 @@ bool WebPluginDelegateImpl::PlatformHandleInputEvent( content_origin.y() != content_area_origin_.y()) { DLOG(WARNING) << "Stale plugin location: " << content_area_origin_ << " instead of " << content_origin; - SetContentAreaOrigin(content_area_origin_); + SetContentAreaOrigin(content_origin); } current_windowless_cursor_.GetCursorInfo(cursor_info); |