summaryrefslogtreecommitdiffstats
path: root/content/renderer/gpu/stream_texture_host_android.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/renderer/gpu/stream_texture_host_android.cc')
-rw-r--r--content/renderer/gpu/stream_texture_host_android.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/content/renderer/gpu/stream_texture_host_android.cc b/content/renderer/gpu/stream_texture_host_android.cc
index 2ecbe7e..a924ddc 100644
--- a/content/renderer/gpu/stream_texture_host_android.cc
+++ b/content/renderer/gpu/stream_texture_host_android.cc
@@ -52,13 +52,10 @@ bool StreamTextureHost::OnMessageReceived(const IPC::Message& message) {
return handled;
}
-void StreamTextureHost::EstablishPeer(
- SurfaceTexturePeer::SurfaceTextureTarget type,
- int32 primary_id, int32 secondary_id) {
+void StreamTextureHost::EstablishPeer(int32 primary_id, int32 secondary_id) {
if (channel_.get()) {
channel_->Send(new GpuChannelMsg_EstablishStreamTexture(
- stream_id_, type,
- primary_id, secondary_id));
+ stream_id_, primary_id, secondary_id));
}
}
void StreamTextureHost::OnChannelError() {