Index: content/common/gpu/stream_texture_android.h |
diff --git a/content/common/gpu/stream_texture_android.h b/content/common/gpu/stream_texture_android.h |
index c24d157f37ea2c64d3e3af594fb563b5139197de..e63f500fb501a726a9fd6a6384e0a6600bfd3e55 100644 |
--- a/content/common/gpu/stream_texture_android.h |
+++ b/content/common/gpu/stream_texture_android.h |
@@ -23,13 +23,13 @@ class StreamTexture : public gfx::GLImage, |
public GpuCommandBufferStub::DestructionObserver { |
public: |
static bool Create(GpuCommandBufferStub* owner_stub, |
- uint32 client_texture_id, |
- int stream_id); |
+ int32 image_id, |
+ int32 stream_id); |
private: |
StreamTexture(GpuCommandBufferStub* owner_stub, |
int32 route_id, |
- uint32 texture_id); |
+ int32 image_id); |
~StreamTexture() override; |
// gfx::GLImage implementation: |
@@ -82,6 +82,7 @@ class StreamTexture : public gfx::GLImage, |
GpuCommandBufferStub* owner_stub_; |
int32 route_id_; |
bool has_listener_; |
+ GLint texture_id_; |
base::WeakPtrFactory<StreamTexture> weak_factory_; |
DISALLOW_COPY_AND_ASSIGN(StreamTexture); |