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

Unified Diff: extensions/browser/api/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
Index: extensions/browser/api/cast_channel/cast_test_util.cc
diff --git a/extensions/browser/api/cast_channel/cast_test_util.cc b/extensions/browser/api/cast_channel/cast_test_util.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d5406b0f9fbc39a9ea860fb9aa7021398563e8db
--- /dev/null
+++ b/extensions/browser/api/cast_channel/cast_test_util.cc
@@ -0,0 +1,47 @@
+// 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 "extensions/browser/api/cast_channel/cast_test_util.h"
+
+#include <utility>
+
+#include "net/base/ip_address.h"
+
+namespace extensions {
+namespace api {
+namespace cast_channel {
+
+const char kTestExtensionId[] = "ddchlicdkolnonkihahngkmmmjnjlkkf";
+
+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
+} // namespace api
+} // namespace extensions
« no previous file with comments | « extensions/browser/api/cast_channel/cast_test_util.h ('k') | extensions/browser/api/cast_channel/cast_transport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698