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

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: Remove resolved TODO Created 4 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/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 945442e8ba4610b6f456a97276365c1619febe78..fc02860b6c8a61c2ff19d310f0f45ebeb2ee8dc0 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