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

Unified Diff: jingle/glue/task_pump_unittest.cc

Issue 429113002: Webrtc deps roll. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DEPS file Created 6 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
Index: jingle/glue/task_pump_unittest.cc
diff --git a/jingle/glue/task_pump_unittest.cc b/jingle/glue/task_pump_unittest.cc
index a9d5c5c420dc2a4c41b5847ac60511935915d121..0782f8fdaee18181571820be5b2de78873b508f0 100644
--- a/jingle/glue/task_pump_unittest.cc
+++ b/jingle/glue/task_pump_unittest.cc
@@ -23,7 +23,7 @@ TEST_F(TaskPumpTest, Basic) {
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 @@ TEST_F(TaskPumpTest, Stop) {
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') | jingle/notifier/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698