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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.h

Issue 2329463004: ABANDONED CL: Changes needed to make things compile after running rewrite_to_chrome_style tool. (Closed)
Patch Set: More fixes - things build fine at this point. 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/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 =

Powered by Google App Engine
This is Rietveld 408576698