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

Unified Diff: remoting/jingle_glue/jingle_thread.cc

Issue 7529003: Make base::MessageLoops have names at construction time (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make message loop name optional. Created 9 years, 5 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 | « content/worker/worker_main.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/jingle_glue/jingle_thread.cc
diff --git a/remoting/jingle_glue/jingle_thread.cc b/remoting/jingle_glue/jingle_thread.cc
index b0b409a53d9636471f807b7d2bbe8a1e9c89ff89..96e9c111694429b1a011140adf51f2fcd2e9e03c 100644
--- a/remoting/jingle_glue/jingle_thread.cc
+++ b/remoting/jingle_glue/jingle_thread.cc
@@ -114,7 +114,7 @@ class JingleMessagePump : public base::MessagePump,
} // namespace
JingleThreadMessageLoop::JingleThreadMessageLoop(talk_base::Thread* thread)
- : MessageLoop(MessageLoop::TYPE_IO) {
+ : MessageLoop("JingleThread", MessageLoop::TYPE_IO) {
pump_ = new JingleMessagePump(thread);
}
« no previous file with comments | « content/worker/worker_main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698