| Index: content/renderer/media/media_stream_video_track_unittest.cc
|
| diff --git a/content/renderer/media/media_stream_video_track_unittest.cc b/content/renderer/media/media_stream_video_track_unittest.cc
|
| index 0e9e0d14485ee7096bee5cf484c1c603e1b6a418..9959efeb044d33622873a67261705b0d5249b465 100644
|
| --- a/content/renderer/media/media_stream_video_track_unittest.cc
|
| +++ b/content/renderer/media/media_stream_video_track_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/bind_helpers.h"
|
| #include "base/callback.h"
|
| @@ -19,8 +21,8 @@
|
|
|
| namespace content {
|
|
|
| -const uint8 kBlackValue = 0x00;
|
| -const uint8 kColorValue = 0xAB;
|
| +const uint8_t kBlackValue = 0x00;
|
| +const uint8_t kColorValue = 0xAB;
|
|
|
| ACTION_P(RunClosure, closure) {
|
| closure.Run();
|
|
|