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

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

Issue 470973002: gpu: Remove WebGraphicsContext3D::makeContextCurrent() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move GLES2Initializer to GrContextForWebGraphicsContext3D, and rename to InitializeOnCurrentThread() Created 6 years, 4 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/webmediaplayer_android.cc
diff --git a/content/renderer/media/android/webmediaplayer_android.cc b/content/renderer/media/android/webmediaplayer_android.cc
index e7520665b1e7e9b47c761b7e1821503476dcbccb..bb16f95c231840eb94c5100c14c065fcd43c73f6 100644
--- a/content/renderer/media/android/webmediaplayer_android.cc
+++ b/content/renderer/media/android/webmediaplayer_android.cc
@@ -532,7 +532,7 @@ void WebMediaPlayerAndroid::paint(blink::WebCanvas* canvas,
if (!provider)
return;
blink::WebGraphicsContext3D* context3D = provider->context3d();
- if (!context3D || !context3D->makeContextCurrent())
+ if (!context3D)
return;
// Copy video texture into a RGBA texture based bitmap first as video texture

Powered by Google App Engine
This is Rietveld 408576698