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

Side by Side Diff: components/cast_channel/cast_test_util.cc

Issue 2926313002: Revert of [cast_channel] Move cast_channel related files from //extensions to //components (Closed)
Patch Set: Created 3 years, 6 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 | « components/cast_channel/cast_test_util.h ('k') | components/cast_channel/cast_transport.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/cast_channel/cast_test_util.h"
6
7 #include <utility>
8
9 #include "net/base/ip_address.h"
10
11 namespace cast_channel {
12
13 MockCastTransport::MockCastTransport() {}
14 MockCastTransport::~MockCastTransport() {}
15
16 CastTransport::Delegate* MockCastTransport::current_delegate() const {
17 CHECK(delegate_);
18 return delegate_.get();
19 }
20
21 void MockCastTransport::SetReadDelegate(
22 std::unique_ptr<CastTransport::Delegate> delegate) {
23 delegate_ = std::move(delegate);
24 }
25
26 MockCastTransportDelegate::MockCastTransportDelegate() {}
27 MockCastTransportDelegate::~MockCastTransportDelegate() {}
28
29 MockCastSocket::MockCastSocket() : mock_transport_(new MockCastTransport()) {}
30 MockCastSocket::~MockCastSocket() {}
31
32 net::IPEndPoint CreateIPEndPointForTest() {
33 return net::IPEndPoint(net::IPAddress(192, 168, 1, 1), 8009);
34 }
35
36 } // namespace cast_channel
OLDNEW
« no previous file with comments | « components/cast_channel/cast_test_util.h ('k') | components/cast_channel/cast_transport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698