diff options
author | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-03 23:34:04 +0000 |
---|---|---|
committer | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-03 23:34:04 +0000 |
commit | 83f8b61d6498f23b6e74598bffa9866fda52ea3a (patch) | |
tree | 6359863ae2d40e953a8c4b7cf27e1664dd08a09b /webkit/glue | |
parent | 0dea0a65b4cabd5910fb8747a0cb3935a27e6ec5 (diff) | |
download | chromium_src-83f8b61d6498f23b6e74598bffa9866fda52ea3a.zip chromium_src-83f8b61d6498f23b6e74598bffa9866fda52ea3a.tar.gz chromium_src-83f8b61d6498f23b6e74598bffa9866fda52ea3a.tar.bz2 |
Reverting 9109.
Broke the build.
Review URL: http://codereview.chromium.org/20029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9110 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r-- | webkit/glue/plugins/webplugin_delegate_impl.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/webkit/glue/plugins/webplugin_delegate_impl.cc b/webkit/glue/plugins/webplugin_delegate_impl.cc index b024bac..b1fc5ae 100644 --- a/webkit/glue/plugins/webplugin_delegate_impl.cc +++ b/webkit/glue/plugins/webplugin_delegate_impl.cc @@ -13,7 +13,6 @@ #include "base/message_loop.h" #include "base/stats_counters.h" #include "base/string_util.h" -#include "base/win_util.h" #include "webkit/default_plugin/plugin_impl.h" #include "webkit/glue/glue_util.h" #include "webkit/glue/webplugin.h" @@ -202,7 +201,6 @@ WebPluginDelegateImpl::WebPluginDelegateImpl( WebPluginDelegateImpl::~WebPluginDelegateImpl() { if (::IsWindow(dummy_window_for_activation_)) { ::DestroyWindow(dummy_window_for_activation_); - TRACK_HWND_DESTRUCTION(dummy_window_for_activation_); } DestroyInstance(); @@ -449,7 +447,6 @@ bool WebPluginDelegateImpl::WindowedCreatePlugin() { 0, GetModuleHandle(NULL), 0); - TRACK_HWND_CREATION(windowed_handle_); if (windowed_handle_ == 0) return false; @@ -509,7 +506,6 @@ void WebPluginDelegateImpl::WindowedDestroyWindow() { } DestroyWindow(windowed_handle_); - TRACK_HWND_DESTRUCTION(windowed_handle_); windowed_handle_ = 0; } } @@ -662,7 +658,6 @@ bool WebPluginDelegateImpl::CreateDummyWindowForActivation() { 0, GetModuleHandle(NULL), 0); - TRACK_HWND_CREATION(dummy_window_for_activation_); if (dummy_window_for_activation_ == 0) return false; |