| Index: third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
|
| diff --git a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
|
| index a15a0c46362577ec9704dfe57d6d0674db3aff38..538bfb64b8c193043caaed6e6a8f239a426909ea 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
|
| @@ -303,7 +303,7 @@ public:
|
| void texImage2D(GLenum target, GLint level, GLint internalformat,
|
| GLenum format, GLenum type, HTMLVideoElement*, ExceptionState&);
|
| void texImage2D(GLenum target, GLint level, GLint internalformat,
|
| - GLenum format, GLenum type, PassRefPtrWillBeRawPtr<ImageBitmap>);
|
| + GLenum format, GLenum type, PassRefPtrWillBeRawPtr<ImageBitmap>, ExceptionState&);
|
|
|
| void texParameterf(GLenum target, GLenum pname, GLfloat param);
|
| void texParameteri(GLenum target, GLenum pname, GLint param);
|
| @@ -320,7 +320,7 @@ public:
|
| void texSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset,
|
| GLenum format, GLenum type, HTMLVideoElement*, ExceptionState&);
|
| void texSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset,
|
| - GLenum format, GLenum type, PassRefPtrWillBeRawPtr<ImageBitmap>);
|
| + GLenum format, GLenum type, PassRefPtrWillBeRawPtr<ImageBitmap>, ExceptionState&);
|
|
|
| void uniform1f(const WebGLUniformLocation*, GLfloat x);
|
| void uniform1fv(const WebGLUniformLocation*, const FlexibleFloat32ArrayView&);
|
|
|