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

Unified Diff: media/cast/rtp_sender/rtp_packetizer/test/rtp_header_parser.h

Issue 112133002: Cast:Moving netwrok sender related code to a designated folder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moving const' to .cc Created 7 years 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: media/cast/rtp_sender/rtp_packetizer/test/rtp_header_parser.h
diff --git a/media/cast/rtp_sender/rtp_packetizer/test/rtp_header_parser.h b/media/cast/rtp_sender/rtp_packetizer/test/rtp_header_parser.h
deleted file mode 100644
index e4b1465fcf7a9a0d4e9bcfd2d44b3bdc49e4bee6..0000000000000000000000000000000000000000
--- a/media/cast/rtp_sender/rtp_packetizer/test/rtp_header_parser.h
+++ /dev/null
@@ -1,35 +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.
-
-// Utility parser for rtp packetizer unittests
-#ifndef MEDIA_CAST_RTP_SENDER_RTP_PACKETIZER_TEST_RTP_HEADER_PARSER_H_
-#define MEDIA_CAST_RTP_SENDER_RTP_PACKETIZER_TEST_RTP_HEADER_PARSER_H_
-
-#include "media/cast/rtp_common/rtp_defines.h"
-
-namespace media {
-namespace cast {
-
-class RtpHeaderParser {
- public:
- RtpHeaderParser(const uint8* rtpData, size_t rtpDataLength);
- ~RtpHeaderParser();
-
- bool Parse(RtpCastHeader* parsed_packet) const;
- private:
- bool ParseCommon(RtpCastHeader* parsed_packet) const;
- bool ParseCast(RtpCastHeader* parsed_packet) const;
- const uint8* const rtp_data_begin_;
- size_t length_;
-
- mutable FrameIdWrapHelper frame_id_wrap_helper_;
- mutable FrameIdWrapHelper reference_frame_id_wrap_helper_;
-
- DISALLOW_COPY_AND_ASSIGN(RtpHeaderParser);
-};
-
-} // namespace cast
-} // namespace media
-
-#endif // MEDIA_CAST_RTP_SENDER_RTP_PACKETIZER_TEST_RTP_HEADER_PARSER_H_

Powered by Google App Engine
This is Rietveld 408576698