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

Unified Diff: content/renderer/media/pepper_to_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/pepper_to_video_track_adapter.h
diff --git a/content/renderer/media/pepper_to_video_track_adapter.h b/content/renderer/media/pepper_to_video_track_adapter.h
index 4682218647698335a80dda5ebda4a0699e0371e0..2b9ea428a92ca3b580d3359071845f5e21e4c9ac 100644
--- a/content/renderer/media/pepper_to_video_track_adapter.h
+++ b/content/renderer/media/pepper_to_video_track_adapter.h
@@ -5,10 +5,13 @@
#ifndef CONTENT_RENDERER_MEDIA_WEBRTC_VIDEO_DESTINATION_HANDLER_H_
#define CONTENT_RENDERER_MEDIA_WEBRTC_VIDEO_DESTINATION_HANDLER_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
#include "base/compiler_specific.h"
+#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "content/common/content_export.h"
@@ -24,7 +27,7 @@ class CONTENT_EXPORT FrameWriterInterface {
// The ownership of the |image_data| doesn't transfer. So the implementation
// of this interface should make a copy of the |image_data| before return.
virtual void PutFrame(PPB_ImageData_Impl* image_data,
- int64 time_stamp_ns) = 0;
+ int64_t time_stamp_ns) = 0;
virtual ~FrameWriterInterface() {}
};
« no previous file with comments | « content/renderer/media/peer_connection_tracker.cc ('k') | content/renderer/media/pepper_to_video_track_adapter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698