| Index: components/cast_channel/cast_test_util.cc
|
| diff --git a/components/cast_channel/cast_test_util.cc b/components/cast_channel/cast_test_util.cc
|
| deleted file mode 100644
|
| index 6ae2d0375f8b0968d731e1384bb957ed78e8a353..0000000000000000000000000000000000000000
|
| --- a/components/cast_channel/cast_test_util.cc
|
| +++ /dev/null
|
| @@ -1,36 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "components/cast_channel/cast_test_util.h"
|
| -
|
| -#include <utility>
|
| -
|
| -#include "net/base/ip_address.h"
|
| -
|
| -namespace cast_channel {
|
| -
|
| -MockCastTransport::MockCastTransport() {}
|
| -MockCastTransport::~MockCastTransport() {}
|
| -
|
| -CastTransport::Delegate* MockCastTransport::current_delegate() const {
|
| - CHECK(delegate_);
|
| - return delegate_.get();
|
| -}
|
| -
|
| -void MockCastTransport::SetReadDelegate(
|
| - std::unique_ptr<CastTransport::Delegate> delegate) {
|
| - delegate_ = std::move(delegate);
|
| -}
|
| -
|
| -MockCastTransportDelegate::MockCastTransportDelegate() {}
|
| -MockCastTransportDelegate::~MockCastTransportDelegate() {}
|
| -
|
| -MockCastSocket::MockCastSocket() : mock_transport_(new MockCastTransport()) {}
|
| -MockCastSocket::~MockCastSocket() {}
|
| -
|
| -net::IPEndPoint CreateIPEndPointForTest() {
|
| - return net::IPEndPoint(net::IPAddress(192, 168, 1, 1), 8009);
|
| -}
|
| -
|
| -} // namespace cast_channel
|
|
|