summaryrefslogtreecommitdiffstats
path: root/chromium/content/renderer/gpu/stream_texture_host_android.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/renderer/gpu/stream_texture_host_android.h')
-rw-r--r--chromium/content/renderer/gpu/stream_texture_host_android.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/chromium/content/renderer/gpu/stream_texture_host_android.h b/chromium/content/renderer/gpu/stream_texture_host_android.h
index 3aaada56e05..005d49d3009 100644
--- a/chromium/content/renderer/gpu/stream_texture_host_android.h
+++ b/chromium/content/renderer/gpu/stream_texture_host_android.h
@@ -26,8 +26,6 @@ class StreamTextureHost : public IPC::Listener {
explicit StreamTextureHost(GpuChannelHost* channel);
virtual ~StreamTextureHost();
- bool Initialize(int32 stream_id);
-
// Listener class that is listening to the stream texture updates. It is
// implemented by StreamTextureProxyImpl.
class Listener {
@@ -37,11 +35,7 @@ class StreamTextureHost : public IPC::Listener {
virtual ~Listener() {}
};
- void SetListener(Listener* listener) { listener_ = listener; }
-
- // Request the GPU process to create the surface texture and forward it
- // to the renderer process.
- void EstablishPeer(int32 primary_id, int32 secondary_id);
+ bool BindToCurrentThread(int32 stream_id, Listener* listener);
// IPC::Channel::Listener implementation:
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
@@ -52,7 +46,6 @@ class StreamTextureHost : public IPC::Listener {
void OnFrameAvailable();
void OnMatrixChanged(const GpuStreamTextureMsg_MatrixChanged_Params& param);
- int route_id_;
int stream_id_;
Listener* listener_;
scoped_refptr<GpuChannelHost> channel_;