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

Unified Diff: base/message_loop.h

Issue 8212006: base::Bind: Cleanup in automation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Mac build 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
« no previous file with comments | « no previous file | base/message_loop.cc » ('j') | chrome/browser/automation/automation_provider_gtk.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_loop.h
diff --git a/base/message_loop.h b/base/message_loop.h
index 29c736c25aafdaaccbbc7b3e7d0b7554384cb2f4..1cebddc1fa1b9e8d94d9268b107553a1283ece33 100644
--- a/base/message_loop.h
+++ b/base/message_loop.h
@@ -11,6 +11,7 @@
#include "base/base_export.h"
#include "base/basictypes.h"
+#include "base/bind.h"
#include "base/callback.h"
#include "base/location.h"
#include "base/memory/ref_counted.h"
@@ -245,7 +246,7 @@ class BASE_EXPORT MessageLoop : public base::MessagePump::Delegate {
// Use QuitTask if you need to Quit another thread's MessageLoop, but note
// that doing so is fairly dangerous if the target thread makes nested calls
// to MessageLoop::Run. The problem being that you won't know which nested
- // run loop you are quiting, so be careful!
+ // run loop you are quitting, so be careful!
//
void Quit();
@@ -262,6 +263,11 @@ class BASE_EXPORT MessageLoop : public base::MessagePump::Delegate {
}
};
+ static base::Closure QuitClosure() {
+ return base::Bind(&MessageLoop::Quit,
+ base::Unretained(MessageLoop::current()));
+ }
+
// Returns the type passed to the constructor.
Type type() const { return type_; }
« no previous file with comments | « no previous file | base/message_loop.cc » ('j') | chrome/browser/automation/automation_provider_gtk.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698