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

Unified Diff: content/renderer/gpu/stream_texture_host_android.cc

Issue 12388038: Android: Remove Surface cruft (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months 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/gpu/stream_texture_host_android.cc
diff --git a/content/renderer/gpu/stream_texture_host_android.cc b/content/renderer/gpu/stream_texture_host_android.cc
index 2ecbe7e9363517c6a6dd11a6907bb861d8f015d9..a924ddc391aaf819b474a5b4387dd27b6eead5df 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() {
« no previous file with comments | « content/renderer/gpu/stream_texture_host_android.h ('k') | content/renderer/media/stream_texture_factory_impl_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698