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

Unified Diff: content/renderer/pepper/ppb_video_decoder_impl.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/pepper/ppb_video_decoder_impl.h
diff --git a/content/renderer/pepper/ppb_video_decoder_impl.h b/content/renderer/pepper/ppb_video_decoder_impl.h
index 094bcff7b43efa3e424b4b4aa32c4ee81fbb6b2d..b9f4d6ae9f25bc8d3200d834cad3255f45854c8f 100644
--- a/content/renderer/pepper/ppb_video_decoder_impl.h
+++ b/content/renderer/pepper/ppb_video_decoder_impl.h
@@ -5,8 +5,10 @@
#ifndef CONTENT_RENDERER_PEPPER_PPB_VIDEO_DECODER_IMPL_H_
#define CONTENT_RENDERER_PEPPER_PPB_VIDEO_DECODER_IMPL_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/compiler_specific.h"
+#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "media/video/video_decode_accelerator.h"
#include "ppapi/c/dev/pp_video_dev.h"
@@ -42,14 +44,14 @@ class PPB_VideoDecoder_Impl : public ppapi::PPB_VideoDecoder_Shared,
void Destroy() override;
// media::VideoDecodeAccelerator::Client implementation.
- void ProvidePictureBuffers(uint32 requested_num_of_buffers,
+ void ProvidePictureBuffers(uint32_t requested_num_of_buffers,
const gfx::Size& dimensions,
- uint32 texture_target) override;
- void DismissPictureBuffer(int32 picture_buffer_id) override;
+ uint32_t texture_target) override;
+ void DismissPictureBuffer(int32_t picture_buffer_id) override;
void PictureReady(const media::Picture& picture) override;
void NotifyError(media::VideoDecodeAccelerator::Error error) override;
void NotifyFlushDone() override;
- void NotifyEndOfBitstreamBuffer(int32 buffer_id) override;
+ void NotifyEndOfBitstreamBuffer(int32_t buffer_id) override;
void NotifyResetDone() override;
private:
« no previous file with comments | « content/renderer/pepper/ppb_var_deprecated_impl.cc ('k') | content/renderer/pepper/ppb_video_decoder_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698