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

Side by Side Diff: jingle/glue/mock_task.h

Issue 435823002: Revert "Update webrtc&libjingle 6774:6799." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 unified diff | Download patch
« no previous file with comments | « jingle/glue/logging_unittest.cc ('k') | jingle/glue/mock_task.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // A mock of rtc::Task. 5 // A mock of talk_base::Task.
6 6
7 #ifndef JINGLE_GLUE_MOCK_TASK_H_ 7 #ifndef JINGLE_GLUE_MOCK_TASK_H_
8 #define JINGLE_GLUE_MOCK_TASK_H_ 8 #define JINGLE_GLUE_MOCK_TASK_H_
9 9
10 #include "testing/gmock/include/gmock/gmock.h" 10 #include "testing/gmock/include/gmock/gmock.h"
11 #include "third_party/webrtc/base/task.h" 11 #include "third_party/libjingle/source/talk/base/task.h"
12 12
13 namespace jingle_glue { 13 namespace jingle_glue {
14 14
15 class MockTask : public rtc::Task { 15 class MockTask : public talk_base::Task {
16 public: 16 public:
17 MockTask(TaskParent* parent); 17 MockTask(TaskParent* parent);
18 18
19 virtual ~MockTask(); 19 virtual ~MockTask();
20 20
21 MOCK_METHOD0(ProcessStart, int()); 21 MOCK_METHOD0(ProcessStart, int());
22 }; 22 };
23 23
24 } // namespace jingle_glue 24 } // namespace jingle_glue
25 25
26 #endif // JINGLE_GLUE_MOCK_TASK_H_ 26 #endif // JINGLE_GLUE_MOCK_TASK_H_
OLDNEW
« no previous file with comments | « jingle/glue/logging_unittest.cc ('k') | jingle/glue/mock_task.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698