| Index: media/cast/audio_receiver/audio_receiver_unittest.cc
|
| diff --git a/media/cast/audio_receiver/audio_receiver_unittest.cc b/media/cast/audio_receiver/audio_receiver_unittest.cc
|
| index cd00e44b119366db5babe613699a9dff4f5b5970..bf2c39c5d79ab9cd326e6c538ecf9223f8e0dfe5 100644
|
| --- a/media/cast/audio_receiver/audio_receiver_unittest.cc
|
| +++ b/media/cast/audio_receiver/audio_receiver_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/bind.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| @@ -18,7 +20,7 @@
|
| namespace media {
|
| namespace cast {
|
|
|
| -static const int64 kStartMillisecond = GG_INT64_C(12345678900000);
|
| +static const int64 kStartMillisecond = INT64_C(12345678900000);
|
|
|
| namespace {
|
| class FakeAudioClient {
|
|
|