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

Unified Diff: media/cast/test/transport/transport.h

Issue 56333003: Adding transport to Cast/test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Responding to review Created 7 years, 1 month 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 | « no previous file | media/cast/test/transport/transport.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/test/transport/transport.h
diff --git a/media/cast/test/transport/transport.h b/media/cast/test/transport/transport.h
new file mode 100644
index 0000000000000000000000000000000000000000..0a9f5cbbfc7e20f5b3f95c77326a2493c4136f83
--- /dev/null
+++ b/media/cast/test/transport/transport.h
@@ -0,0 +1,55 @@
+// Copyright 2013 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.
+
+#ifndef MEDIA_CAST_TEST_TRANSPORT_TRANSPORT_H_
+#define MEDIA_CAST_TEST_TRANSPORT_TRANSPORT_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "media/cast/cast_config.h"
+#include "media/cast/cast_environment.h"
+#include "net/udp/udp_server_socket.h"
+#include "net/udp/udp_socket.h"
+
+
+namespace media {
+namespace cast {
+namespace test {
+
+class LocalUdpTransportData;
+class LocalPacketSender;
+
+// Helper class for Cast test applications.
+class Transport {
+ public:
+ Transport(scoped_refptr<CastEnvironment> cast_environment);
+ ~Transport();
+
+ // Specifies the ports and IP address to receive packets on.
+ // Will start listening immediately.
+ void SetLocalReceiver(PacketReceiver* packet_receiver,
+ std::string ip_address,
+ int port);
+
+ // Specifies the destination port and IP address.
+ void SetSendDestination(std::string ip_address, int port);
+
+ PacketSender* packet_sender();
+
+ void SetSendSidePacketLoss(int percentage);
+
+ void StopReceiving();
+
+ private:
+ scoped_ptr<net::DatagramServerSocket> udp_socket_;
+ scoped_ptr<LocalPacketSender> packet_sender_;
+ scoped_ptr<LocalUdpTransportData> local_udp_transport_data_;
+
+ DISALLOW_COPY_AND_ASSIGN(Transport);
+};
+
+} // namespace test
+} // namespace cast
+} // namespace media
+
+#endif // MEDIA_CAST_TEST_TRANSPORT_TRANSPORT_H_
« no previous file with comments | « no previous file | media/cast/test/transport/transport.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698