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

Unified Diff: third_party/WebKit/Source/core/html/HTMLVideoElement.cpp

Issue 2442273002: cl for resolving cq issues
Patch Set: rtebase Created 3 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: third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
index 3bf2a9d4f7c1d68896882ad758f7047a794e1fac..8faea756762c969aa7e486d53b944f3ad895274a 100644
--- a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
@@ -323,6 +323,7 @@ bool HTMLVideoElement::TexImageImpl(
WebMediaPlayer::TexImageFunctionID function_id,
GLenum target,
gpu::gles2::GLES2Interface* gl,
+ GLuint texture,
GLint level,
GLint internalformat,
GLenum format,
@@ -335,8 +336,8 @@ bool HTMLVideoElement::TexImageImpl(
if (!GetWebMediaPlayer())
return false;
return GetWebMediaPlayer()->TexImageImpl(
- function_id, target, gl, level, internalformat, format, type, xoffset,
- yoffset, zoffset, flip_y, premultiply_alpha);
+ function_id, target, gl, texture, level, internalformat, format, type,
+ xoffset, yoffset, zoffset, flip_y, premultiply_alpha);
}
bool HTMLVideoElement::HasAvailableVideoFrame() const {

Powered by Google App Engine
This is Rietveld 408576698