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

Unified Diff: content/renderer/media/android/stream_texture_factory_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/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;
« no previous file with comments | « content/renderer/media/android/stream_texture_factory.h ('k') | content/renderer/media/android/stream_texture_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698