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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« 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