diff options
author | miu <miu@chromium.org> | 2015-12-29 14:04:57 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-12-29 22:05:47 +0000 |
commit | c938d4441a3fe1c3851858fba68e017aef424f86 (patch) | |
tree | 23e28f1f3d971c79c60e62411e18fb7725998a52 /media/cast/cast_testing.gypi | |
parent | 54342454be5d73c64aa47b57facd880ba8df2b36 (diff) | |
download | chromium_src-c938d4441a3fe1c3851858fba68e017aef424f86.zip chromium_src-c938d4441a3fe1c3851858fba68e017aef424f86.tar.gz chromium_src-c938d4441a3fe1c3851858fba68e017aef424f86.tar.bz2 |
Replace uses of raw uint32's with a type-checked RtpTimeTicks data type.
Introduces RtpTimeDelta and RtpTimeTicks to media::cast, modeled after
base::TimeDelta and base::TimeTicks, that track RTP time and provide a
strict set of valid math and comparison operators, bit truncation and
re-expansion, and timebase conversion.
All instances of raw uint32 used to represent RTP timestamps has been
replaced with the new data type.
BUG=530839
NOPRESUBMIT=true
Review URL: https://codereview.chromium.org/1515433002
Cr-Commit-Position: refs/heads/master@{#367106}
Diffstat (limited to 'media/cast/cast_testing.gypi')
-rw-r--r-- | media/cast/cast_testing.gypi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/media/cast/cast_testing.gypi b/media/cast/cast_testing.gypi index c1933f6..e8e0404 100644 --- a/media/cast/cast_testing.gypi +++ b/media/cast/cast_testing.gypi @@ -89,6 +89,8 @@ '<(DEPTH)/testing/gtest.gyp:gtest', ], 'sources': [ + 'common/expanded_value_base_unittest.cc', + 'common/rtp_time_unittest.cc', 'logging/encoding_event_subscriber_unittest.cc', 'logging/receiver_time_offset_estimator_impl_unittest.cc', 'logging/serialize_deserialize_test.cc', |