| 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() {}
|
| };
|
|
|
|
|