| Index: media/cast/transport/pacing/paced_sender_unittest.cc
|
| diff --git a/media/cast/transport/pacing/paced_sender_unittest.cc b/media/cast/transport/pacing/paced_sender_unittest.cc
|
| index bd558dc5cd11e52fb2796840a3d89333295e6a84..16dcd0f838cd182408d33ae01ceaa4164ee49c13 100644
|
| --- a/media/cast/transport/pacing/paced_sender_unittest.cc
|
| +++ b/media/cast/transport/pacing/paced_sender_unittest.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/big_endian.h"
|
| #include "base/test/simple_test_tick_clock.h"
|
| #include "media/cast/logging/simple_event_subscriber.h"
|
| @@ -21,7 +23,7 @@ static const size_t kSize2 = 101;
|
| static const size_t kSize3 = 102;
|
| static const size_t kSize4 = 103;
|
| static const size_t kNackSize = 104;
|
| -static const int64 kStartMillisecond = GG_INT64_C(12345678900000);
|
| +static const int64 kStartMillisecond = INT64_C(12345678900000);
|
| static const uint32 kVideoSsrc = 0x1234;
|
| static const uint32 kAudioSsrc = 0x5678;
|
|
|
|
|