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

Unified Diff: media/cast/transport/rtcp/rtcp_builder.h

Issue 388663003: Cast: Reshuffle files under media/cast (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing includes Created 6 years, 5 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 | « media/cast/transport/pacing/paced_sender_unittest.cc ('k') | media/cast/transport/rtcp/rtcp_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/transport/rtcp/rtcp_builder.h
diff --git a/media/cast/transport/rtcp/rtcp_builder.h b/media/cast/transport/rtcp/rtcp_builder.h
deleted file mode 100644
index f095ae9ee546b90d12a13ae8d0996f7d55fc1f66..0000000000000000000000000000000000000000
--- a/media/cast/transport/rtcp/rtcp_builder.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// 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_TRANSPORT_RTCP_RTCP_BUILDER_H_
-#define MEDIA_CAST_TRANSPORT_RTCP_RTCP_BUILDER_H_
-
-#include <list>
-#include <string>
-#include <vector>
-
-#include "media/cast/transport/cast_transport_defines.h"
-#include "media/cast/transport/pacing/paced_sender.h"
-
-namespace media {
-namespace cast {
-namespace transport {
-
-class RtcpBuilder {
- public:
- explicit RtcpBuilder(PacedSender* const paced_packet_sender);
-
- virtual ~RtcpBuilder();
-
- void SendRtcpFromRtpSender(uint32 packet_type_flags,
- const RtcpSenderInfo& sender_info,
- const RtcpDlrrReportBlock& dlrr,
- uint32 ssrc,
- const std::string& c_name);
-
- private:
- bool BuildSR(const RtcpSenderInfo& sender_info, Packet* packet) const;
- bool BuildSdec(Packet* packet) const;
- bool BuildBye(Packet* packet) const;
- bool BuildDlrrRb(const RtcpDlrrReportBlock& dlrr,
- Packet* packet) const;
-
- PacedSender* const transport_; // Not owned by this class.
- uint32 ssrc_;
- std::string c_name_;
-
- DISALLOW_COPY_AND_ASSIGN(RtcpBuilder);
-};
-
-} // namespace transport
-} // namespace cast
-} // namespace media
-
-#endif // MEDIA_CAST_TRANSPORT_RTCP_RTCP_BUILDER_H_
« no previous file with comments | « media/cast/transport/pacing/paced_sender_unittest.cc ('k') | media/cast/transport/rtcp/rtcp_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698