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

Side by Side Diff: webrtc/rtc_base/asyncudpsocket_unittest.cc

Issue 2962303003: Revert "Update includes for webrtc/{base => rtc_base} rename (3/3)" (Closed)
Patch Set: Created 3 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 unified diff | Download patch
« no previous file with comments | « webrtc/rtc_base/asyncudpsocket.cc ('k') | webrtc/rtc_base/atomicops_unittest.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 /* 1 /*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <memory> 11 #include <memory>
12 #include <string> 12 #include <string>
13 13
14 #include "webrtc/rtc_base/asyncudpsocket.h" 14 #include "webrtc/base/asyncudpsocket.h"
15 #include "webrtc/rtc_base/gunit.h" 15 #include "webrtc/base/gunit.h"
16 #include "webrtc/rtc_base/physicalsocketserver.h" 16 #include "webrtc/base/physicalsocketserver.h"
17 #include "webrtc/rtc_base/virtualsocketserver.h" 17 #include "webrtc/base/virtualsocketserver.h"
18 18
19 namespace rtc { 19 namespace rtc {
20 20
21 class AsyncUdpSocketTest 21 class AsyncUdpSocketTest
22 : public testing::Test, 22 : public testing::Test,
23 public sigslot::has_slots<> { 23 public sigslot::has_slots<> {
24 public: 24 public:
25 AsyncUdpSocketTest() 25 AsyncUdpSocketTest()
26 : pss_(new rtc::PhysicalSocketServer), 26 : pss_(new rtc::PhysicalSocketServer),
27 vss_(new rtc::VirtualSocketServer(pss_.get())), 27 vss_(new rtc::VirtualSocketServer(pss_.get())),
(...skipping 16 matching lines...) Expand all
44 bool ready_to_send_; 44 bool ready_to_send_;
45 }; 45 };
46 46
47 TEST_F(AsyncUdpSocketTest, OnWriteEvent) { 47 TEST_F(AsyncUdpSocketTest, OnWriteEvent) {
48 EXPECT_FALSE(ready_to_send_); 48 EXPECT_FALSE(ready_to_send_);
49 socket_->SignalWriteEvent(socket_); 49 socket_->SignalWriteEvent(socket_);
50 EXPECT_TRUE(ready_to_send_); 50 EXPECT_TRUE(ready_to_send_);
51 } 51 }
52 52
53 } // namespace rtc 53 } // namespace rtc
OLDNEW
« no previous file with comments | « webrtc/rtc_base/asyncudpsocket.cc ('k') | webrtc/rtc_base/atomicops_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698