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

Unified Diff: chrome/browser/ui/webui/chromeos/imageburner/webui_handler.h

Issue 8113025: base::Bind: More converts, mostly in WebUI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 9 years, 2 months 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
Index: chrome/browser/ui/webui/chromeos/imageburner/webui_handler.h
diff --git a/chrome/browser/ui/webui/chromeos/imageburner/webui_handler.h b/chrome/browser/ui/webui/chromeos/imageburner/webui_handler.h
index 3e2c3ec06a0b784e193ea2c826f232e6c0506846..ee03ab5080786d31da60571b0711efeefdc3c3cb 100644
--- a/chrome/browser/ui/webui/chromeos/imageburner/webui_handler.h
+++ b/chrome/browser/ui/webui/chromeos/imageburner/webui_handler.h
@@ -8,6 +8,7 @@
#include <string>
+#include "base/bind.h"
#include "base/file_path.h"
#include "base/string16.h"
#include "base/values.h"
@@ -56,7 +57,7 @@ class WebUIHandlerTaskProxy
void DeleteOnUIThread() {
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
- NewRunnableMethod(this, &WebUIHandlerTaskProxy::DoNothing));
+ base::Bind(&WebUIHandlerTaskProxy::DoNothing, this));
}
void DoNothing() {}

Powered by Google App Engine
This is Rietveld 408576698