diff options
author | isheriff <isheriff@chromium.org> | 2015-10-07 09:16:48 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-07 16:17:29 +0000 |
commit | 64c95062775d2779d6a588942f3b9ac24f5ccb9b (patch) | |
tree | a936c7cd3b42c30ecb578c1fddae44298caf18fe /media/cast/net/rtp/cast_message_builder_unittest.cc | |
parent | 327f58126894dc170bd2d80d042786a3fc41d293 (diff) | |
download | chromium_src-64c95062775d2779d6a588942f3b9ac24f5ccb9b.zip chromium_src-64c95062775d2779d6a588942f3b9ac24f5ccb9b.tar.gz chromium_src-64c95062775d2779d6a588942f3b9ac24f5ccb9b.tar.bz2 |
cast: clean up lint errors on commit
cast: cleanup rtp header and parsing
- Remove redundant rtp_header_parser which was mostly duplicated
code that was modified for tests. Add all the necessary functionality
to the existing rtp_parser and update tests to use rtp_parser
- remove rtp_receiver_defines.h and integrate it with rtp_defines.h where
it makes more sense since it is not specific to receiver
- These changes help bring in adaptive playout data parsing into the tests
which will help add unittests for adaptive playout for future CLs
BUG=
Review URL: https://codereview.chromium.org/1377273003
Cr-Commit-Position: refs/heads/master@{#352853}
Diffstat (limited to 'media/cast/net/rtp/cast_message_builder_unittest.cc')
-rw-r--r-- | media/cast/net/rtp/cast_message_builder_unittest.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/media/cast/net/rtp/cast_message_builder_unittest.cc b/media/cast/net/rtp/cast_message_builder_unittest.cc index bae827a..166834e 100644 --- a/media/cast/net/rtp/cast_message_builder_unittest.cc +++ b/media/cast/net/rtp/cast_message_builder_unittest.cc @@ -9,7 +9,7 @@ #include "media/cast/net/rtcp/rtcp.h" #include "media/cast/net/rtp/cast_message_builder.h" #include "media/cast/net/rtp/framer.h" -#include "media/cast/net/rtp/rtp_receiver_defines.h" +#include "media/cast/net/rtp/rtp_defines.h" #include "testing/gtest/include/gtest/gtest.h" namespace media { @@ -139,6 +139,7 @@ class CastMessageBuilderTest : public ::testing::Test { RtpCastHeader rtp_header_; base::SimpleTestTickClock testing_clock_; + private: DISALLOW_COPY_AND_ASSIGN(CastMessageBuilderTest); }; |