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

Unified Diff: content/renderer/media/android/stream_texture_factory_impl.cc

Issue 1746983002: Make Android StreamTexture implement GLStreamTextureImage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't remove the default stream texture matrix from cc/layers Created 4 years, 8 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/media/android/stream_texture_factory_impl.cc
diff --git a/content/renderer/media/android/stream_texture_factory_impl.cc b/content/renderer/media/android/stream_texture_factory_impl.cc
index e38b6de2233d781e13ba2b1440cb1369e1dd5964..81de90af4b3a45ba7340ee02ce347026f067a484 100644
--- a/content/renderer/media/android/stream_texture_factory_impl.cc
+++ b/content/renderer/media/android/stream_texture_factory_impl.cc
@@ -31,7 +31,6 @@ class StreamTextureProxyImpl : public StreamTextureProxy,
// StreamTextureHost::Listener implementation:
void OnFrameAvailable() override;
- void OnMatrixChanged(const float matrix[16]) override;
private:
void BindOnThread(int32_t stream_id);
@@ -102,12 +101,6 @@ void StreamTextureProxyImpl::OnFrameAvailable() {
client_->DidReceiveFrame();
}
-void StreamTextureProxyImpl::OnMatrixChanged(const float matrix[16]) {
- base::AutoLock lock(lock_);
- if (client_)
- client_->DidUpdateMatrix(matrix);
-}
-
} // namespace
// static

Powered by Google App Engine
This is Rietveld 408576698