| 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 7d58fcf40e47bf6bab2b56de346c701d925ac20e..5a0f6593d118fbae3096a84ff014eeced4d445cc 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h
|
| @@ -1017,6 +1017,8 @@ class MODULES_EXPORT WebGLRenderingContextBase : public CanvasRenderingContext,
|
|
|
| template <typename T>
|
| IntRect getTextureSourceSize(T* textureSource) {
|
| + /* DO NOT SUBMIT - merge conflict marker.
|
| + * Please spell |width| and |height| below. */
|
| return IntRect(0, 0, textureSource->width(), textureSource->height());
|
| }
|
|
|
| @@ -1031,6 +1033,8 @@ class MODULES_EXPORT WebGLRenderingContextBase : public CanvasRenderingContext,
|
| DCHECK(functionName);
|
| DCHECK(selectingSubRectangle);
|
| DCHECK(image);
|
| + /* DO NOT SUBMIT - merge conflict marker.
|
| + * Please spell |width| and |height| in the 2 lines below. */
|
| int imageWidth = static_cast<int>(image->width());
|
| int imageHeight = static_cast<int>(image->height());
|
| *selectingSubRectangle =
|
|
|