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

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: Use scoped_ptr and remove unrelated changes. 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 930ea6d6a92026e47f37e4265f49f647885ba1cd..cf61001bce36dc2e08aec1f21fddd83ee0b5e7b6 100644
--- a/content/renderer/media/android/webmediaplayer_android.cc
+++ b/content/renderer/media/android/webmediaplayer_android.cc
@@ -521,7 +521,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