Title: [186459] releases/WebKitGTK/webkit-2.8/Source/WebCore
Revision
186459
Author
[email protected]
Date
2015-07-07 05:40:36 -0700 (Tue, 07 Jul 2015)

Log Message

[GTK] DrawingBuffer.h used outside of include guard
https://bugs.webkit.org/show_bug.cgi?id=144559

Patch by Philip Chimento <[email protected]> on 2015-05-07
Reviewed by Carlos Garcia Campos.

* platform/graphics/cairo/DrawingBufferCairo.cpp: A header was
improperly included outside of an include guard, causing a build
failure with a particular combination of options.

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.8/Source/WebCore/ChangeLog (186458 => 186459)


--- releases/WebKitGTK/webkit-2.8/Source/WebCore/ChangeLog	2015-07-07 12:38:39 UTC (rev 186458)
+++ releases/WebKitGTK/webkit-2.8/Source/WebCore/ChangeLog	2015-07-07 12:40:36 UTC (rev 186459)
@@ -1,3 +1,14 @@
+2015-05-07  Philip Chimento  <[email protected]>
+
+        [GTK] DrawingBuffer.h used outside of include guard
+        https://bugs.webkit.org/show_bug.cgi?id=144559
+
+        Reviewed by Carlos Garcia Campos.
+
+        * platform/graphics/cairo/DrawingBufferCairo.cpp: A header was
+        improperly included outside of an include guard, causing a build
+        failure with a particular combination of options.
+
 2015-07-06  Andreas Kling  <[email protected]>
 
         Crash when setting text direction via MakeTextWritingDirection* editing commands.

Modified: releases/WebKitGTK/webkit-2.8/Source/WebCore/platform/graphics/cairo/DrawingBufferCairo.cpp (186458 => 186459)


--- releases/WebKitGTK/webkit-2.8/Source/WebCore/platform/graphics/cairo/DrawingBufferCairo.cpp	2015-07-07 12:38:39 UTC (rev 186458)
+++ releases/WebKitGTK/webkit-2.8/Source/WebCore/platform/graphics/cairo/DrawingBufferCairo.cpp	2015-07-07 12:40:36 UTC (rev 186459)
@@ -24,9 +24,9 @@
  */
 
 #include "config.h"
-#include "DrawingBuffer.h"
 
 #if USE(CAIRO) && (ENABLE(ACCELERATED_2D_CANVAS) || USE(3D_GRAPHICS))
+#include "DrawingBuffer.h"
 #include "Extensions3D.h"
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to