Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2556)

Unified Diff: chrome/default_plugin/plugin_install_job_monitor.cc

Issue 8603007: More base::Bind migrations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: code review tweak, rebase Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/user_style_sheet_watcher.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/default_plugin/plugin_install_job_monitor.cc
===================================================================
--- chrome/default_plugin/plugin_install_job_monitor.cc (revision 111186)
+++ chrome/default_plugin/plugin_install_job_monitor.cc (working copy)
@@ -4,6 +4,7 @@
#include "chrome/default_plugin/plugin_install_job_monitor.h"
+#include "base/bind.h"
#include "base/message_loop.h"
#include "chrome/default_plugin/plugin_impl.h"
@@ -41,9 +42,9 @@
}
void PluginInstallationJobMonitorThread::Init() {
- this->message_loop()->PostTask(FROM_HERE,
- NewRunnableMethod(this,
- &PluginInstallationJobMonitorThread::WaitForJobThread));
+ this->message_loop()->PostTask(
+ FROM_HERE,
+ base::Bind(&PluginInstallationJobMonitorThread::WaitForJobThread, this));
}
void PluginInstallationJobMonitorThread::WaitForJobThread() {
« no previous file with comments | « chrome/browser/user_style_sheet_watcher.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698