| Index: content/renderer/media/android/stream_texture_factory_impl.h
|
| diff --git a/content/renderer/media/android/stream_texture_factory_impl.h b/content/renderer/media/android/stream_texture_factory_impl.h
|
| index f39ba49565b82c0e43632f0bc1ba8ece7d04df9f..648f70fbcedac0b01f9311d94cd6631fc3b900a3 100644
|
| --- a/content/renderer/media/android/stream_texture_factory_impl.h
|
| +++ b/content/renderer/media/android/stream_texture_factory_impl.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_
|
| #define CONTENT_RENDERER_MEDIA_ANDROID_STREAM_TEXTURE_FACTORY_IMPL_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "content/renderer/media/android/stream_texture_factory.h"
|
|
|
| namespace cc {
|
| @@ -30,11 +33,11 @@ class StreamTextureFactoryImpl : public StreamTextureFactory {
|
|
|
| // StreamTextureFactory implementation.
|
| StreamTextureProxy* CreateProxy() override;
|
| - void EstablishPeer(int32 stream_id, int player_id, int frame_id) override;
|
| + void EstablishPeer(int32_t stream_id, int player_id, int frame_id) override;
|
| unsigned CreateStreamTexture(unsigned texture_target,
|
| unsigned* texture_id,
|
| gpu::Mailbox* texture_mailbox) override;
|
| - void SetStreamTextureSize(int32 texture_id, const gfx::Size& size) override;
|
| + void SetStreamTextureSize(int32_t texture_id, const gfx::Size& size) override;
|
| gpu::gles2::GLES2Interface* ContextGL() override;
|
| void AddObserver(StreamTextureFactoryContextObserver* obs) override;
|
| void RemoveObserver(StreamTextureFactoryContextObserver* obs) override;
|
|
|