Title: [224858] trunk/Source/WebCore
Revision
224858
Author
achristen...@apple.com
Date
2017-11-14 16:09:48 -0800 (Tue, 14 Nov 2017)

Log Message

Fix Windows build.

* html/canvas/WebGLRenderingContext.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (224857 => 224858)


--- trunk/Source/WebCore/ChangeLog	2017-11-15 00:04:33 UTC (rev 224857)
+++ trunk/Source/WebCore/ChangeLog	2017-11-15 00:09:48 UTC (rev 224858)
@@ -1,3 +1,9 @@
+2017-11-14  Alex Christensen  <achristen...@webkit.org>
+
+        Fix Windows build.
+
+        * html/canvas/WebGLRenderingContext.h:
+
 2017-11-14  Chris Dumez  <cdu...@apple.com>
 
         [Service Workers] Implement container.getRegistrations()

Modified: trunk/Source/WebCore/html/canvas/WebGLRenderingContext.h (224857 => 224858)


--- trunk/Source/WebCore/html/canvas/WebGLRenderingContext.h	2017-11-15 00:04:33 UTC (rev 224857)
+++ trunk/Source/WebCore/html/canvas/WebGLRenderingContext.h	2017-11-15 00:09:48 UTC (rev 224858)
@@ -27,10 +27,10 @@
 
 #include "WebGLRenderingContextBase.h"
 
+#if ENABLE(WEBGL)
+
 namespace WebCore {
 
-#if ENABLE(WEBGL)
-
 class WebGLRenderingContext final : public WebGLRenderingContextBase {
 public:
     WebGLRenderingContext(HTMLCanvasElement&, GraphicsContext3DAttributes);
@@ -56,8 +56,8 @@
     bool validateCapability(const char* functionName, GC3Denum cap) final;
 };
 
-#endif
-
 } // namespace WebCore
 
 SPECIALIZE_TYPE_TRAITS_CANVASRENDERINGCONTEXT(WebCore::WebGLRenderingContext, isWebGL1())
+
+#endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to