| Index: content/renderer/media/video_track_adapter.h
|
| diff --git a/content/renderer/media/video_track_adapter.h b/content/renderer/media/video_track_adapter.h
|
| index a63b6e1e49db05e4f3ed210c62629bcbd0f8e506..ddd73efd9d47010ff9f643c2c06f02647d335e46 100644
|
| --- a/content/renderer/media/video_track_adapter.h
|
| +++ b/content/renderer/media/video_track_adapter.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef CONTENT_RENDERER_MEDIA_VIDEO_TRACK_ADAPTER_H_
|
| #define CONTENT_RENDERER_MEDIA_VIDEO_TRACK_ADAPTER_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| @@ -84,7 +86,7 @@ class VideoTrackAdapter
|
| // Compare |frame_counter_snapshot| with the current |frame_counter_|, and
|
| // inform of the situation (muted, not muted) via |set_muted_state_callback|.
|
| void CheckFramesReceivedOnIO(const OnMutedCallback& set_muted_state_callback,
|
| - uint64 old_frame_counter_snapshot);
|
| + uint64_t old_frame_counter_snapshot);
|
|
|
| // |thread_checker_| is bound to the main render thread.
|
| base::ThreadChecker thread_checker_;
|
| @@ -112,7 +114,7 @@ class VideoTrackAdapter
|
| bool muted_state_;
|
|
|
| // Running frame counter, accessed on the IO-thread.
|
| - uint64 frame_counter_;
|
| + uint64_t frame_counter_;
|
|
|
| // Frame rate configured on the video source, accessed on the IO-thread.
|
| float source_frame_rate_;
|
|
|