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

Unified Diff: remoting/protocol/jingle_session_unittest.cc

Issue 8483003: Callback API Change: Reimplement Bind(); support IgnoreResult, full currying, and use less types (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased 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 | « media/tools/player_x11/player_x11.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/jingle_session_unittest.cc
diff --git a/remoting/protocol/jingle_session_unittest.cc b/remoting/protocol/jingle_session_unittest.cc
index a4de003ca28141adb963dc9e4f0344a06e2cb13b..35577fc3e867758c016ba215dc314130444e2f50 100644
--- a/remoting/protocol/jingle_session_unittest.cc
+++ b/remoting/protocol/jingle_session_unittest.cc
@@ -83,7 +83,7 @@ void OnTimeoutTerminateThread(bool* timeout) {
bool RunMessageLoopWithTimeout(int timeout_ms) {
bool timeout = false;
MessageLoop::current()->PostDelayedTask(
- FROM_HERE, base::Bind(OnTimeoutTerminateThread, &timeout), timeout_ms);
+ FROM_HERE, base::Bind(&OnTimeoutTerminateThread, &timeout), timeout_ms);
MessageLoop::current()->Run();
return !timeout;
}
« no previous file with comments | « media/tools/player_x11/player_x11.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698