Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(787)

Unified Diff: content/renderer/media/video_track_adapter.h

Issue 1547073003: Switch to standard integer types in content/renderer/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
« no previous file with comments | « content/renderer/media/video_capture_message_filter_unittest.cc ('k') | content/renderer/media/video_track_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698