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

Unified Diff: jingle/glue/task_pump_unittest.cc

Issue 450463002: Update webrtc&libjingle 6774:6825. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 years, 4 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 | « jingle/glue/task_pump.h ('k') | jingle/glue/thread_wrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/glue/task_pump_unittest.cc
===================================================================
--- jingle/glue/task_pump_unittest.cc (revision 287594)
+++ jingle/glue/task_pump_unittest.cc (working copy)
@@ -23,7 +23,7 @@
TaskPump task_pump;
MockTask* task = new MockTask(&task_pump);
// We have to do this since the state enum is protected in
- // talk_base::Task.
+ // rtc::Task.
const int TASK_STATE_DONE = 2;
EXPECT_CALL(*task, ProcessStart()).WillOnce(Return(TASK_STATE_DONE));
task->Start();
@@ -35,7 +35,7 @@
TaskPump task_pump;
MockTask* task = new MockTask(&task_pump);
// We have to do this since the state enum is protected in
- // talk_base::Task.
+ // rtc::Task.
const int TASK_STATE_ERROR = 3;
ON_CALL(*task, ProcessStart()).WillByDefault(Return(TASK_STATE_ERROR));
EXPECT_CALL(*task, ProcessStart()).Times(0);
« no previous file with comments | « jingle/glue/task_pump.h ('k') | jingle/glue/thread_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698