summaryrefslogtreecommitdiffstats
path: root/webkit/plugins/webview_plugin.h
diff options
context:
space:
mode:
authordcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-29 22:51:17 +0000
committerdcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-29 22:51:17 +0000
commitb2414ca78f43c38aa817f58ddc8247d4c1769e5d (patch)
treea8c2ac82ce53ba2aec9db231a2129cbf2845fede /webkit/plugins/webview_plugin.h
parentfe20095d2cfe95bd02d3bc728f7fa27cbb36cf94 (diff)
downloadchromium_src-b2414ca78f43c38aa817f58ddc8247d4c1769e5d.zip
chromium_src-b2414ca78f43c38aa817f58ddc8247d4c1769e5d.tar.gz
chromium_src-b2414ca78f43c38aa817f58ddc8247d4c1769e5d.tar.bz2
Replace MessageLoop::DeleteSoon implementation with one that uses base::Bind.
BUG=none TEST=none TBR=willchan,brettw,tony Review URL: http://codereview.chromium.org/9004051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115997 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/plugins/webview_plugin.h')
-rw-r--r--webkit/plugins/webview_plugin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/plugins/webview_plugin.h b/webkit/plugins/webview_plugin.h
index 0a9b5d9..2915adda 100644
--- a/webkit/plugins/webview_plugin.h
+++ b/webkit/plugins/webview_plugin.h
@@ -8,7 +8,7 @@
#include <list>
#include "base/memory/scoped_ptr.h"
-#include "base/task.h"
+#include "base/message_loop_helpers.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebFrameClient.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebPlugin.h"
@@ -142,7 +142,7 @@ class WebViewPlugin: public WebKit::WebPlugin, public WebKit::WebViewClient,
const WebKit::WebURLResponse& response);
private:
- friend class DeleteTask<WebViewPlugin>;
+ friend class base::DeleteHelper<WebViewPlugin>;
virtual ~WebViewPlugin();
Delegate* delegate_;