diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-14 01:12:38 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-14 01:12:38 +0000 |
commit | d60cd48c0f4e822b3f14b72ef95667845aefce29 (patch) | |
tree | 0ff1158c36c6b60be74bf23bec59bd08726e9287 /chrome | |
parent | ed3ce0d59e2f52f805a8a76b112bfd48156416d0 (diff) | |
download | chromium_src-d60cd48c0f4e822b3f14b72ef95667845aefce29.zip chromium_src-d60cd48c0f4e822b3f14b72ef95667845aefce29.tar.gz chromium_src-d60cd48c0f4e822b3f14b72ef95667845aefce29.tar.bz2 |
Change PluginInstallImpl to use base::WindowImpl instead of CWindowImpl to reduce a dependency on ATL.
BUG=5023
TEST=Uninstall flash. Visit hulu.com and install the flash plugin.
Review URL: http://codereview.chromium.org/165469
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23406 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/views/tab_contents/tab_contents_view_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/views/tab_contents/tab_contents_view_win.cc b/chrome/browser/views/tab_contents/tab_contents_view_win.cc index 47a73e3..2c5786b 100644 --- a/chrome/browser/views/tab_contents/tab_contents_view_win.cc +++ b/chrome/browser/views/tab_contents/tab_contents_view_win.cc @@ -247,7 +247,7 @@ void TabContentsViewWin::OnTabCrashed() { // paint. // Note that it's possible to get this message after the window was destroyed. if (::IsWindow(GetNativeView())) - InvalidateRect(GetNativeView(), NULL, FALSE); + ::InvalidateRect(GetNativeView(), NULL, FALSE); } void TabContentsViewWin::SizeContents(const gfx::Size& size) { |