Title: [171083] trunk/Source/WebCore
Revision
171083
Author
[email protected]
Date
2014-07-14 14:29:08 -0700 (Mon, 14 Jul 2014)

Log Message

Fix the !ENABLE(FILTERS) && !ENABLE(CSS_FILTERS) build after r167497
https://bugs.webkit.org/show_bug.cgi?id=134679

Patch by Tibor Meszaros <[email protected]> on 2014-07-14
Reviewed by Darin Adler.

* html/ImageData.cpp:
* platform/graphics/cairo/ImageBufferCairo.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (171082 => 171083)


--- trunk/Source/WebCore/ChangeLog	2014-07-14 21:23:49 UTC (rev 171082)
+++ trunk/Source/WebCore/ChangeLog	2014-07-14 21:29:08 UTC (rev 171083)
@@ -1,3 +1,13 @@
+2014-07-14  Tibor Meszaros  <[email protected]>
+
+        Fix the !ENABLE(FILTERS) && !ENABLE(CSS_FILTERS) build after r167497
+        https://bugs.webkit.org/show_bug.cgi?id=134679
+
+        Reviewed by Darin Adler.
+
+        * html/ImageData.cpp:
+        * platform/graphics/cairo/ImageBufferCairo.cpp:
+
 2014-07-14  Manuel Rego Casasnovas  <[email protected]>
 
         [CSS Grid Layout] Support sparse in auto-placement algorithm

Modified: trunk/Source/WebCore/html/ImageData.cpp (171082 => 171083)


--- trunk/Source/WebCore/html/ImageData.cpp	2014-07-14 21:23:49 UTC (rev 171082)
+++ trunk/Source/WebCore/html/ImageData.cpp	2014-07-14 21:29:08 UTC (rev 171083)
@@ -31,6 +31,8 @@
 #include "ImageData.h"
 
 #include "ExceptionCode.h"
+#include <runtime/JSCInlines.h>
+#include <runtime/TypedArrayInlines.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/platform/graphics/cairo/ImageBufferCairo.cpp (171082 => 171083)


--- trunk/Source/WebCore/platform/graphics/cairo/ImageBufferCairo.cpp	2014-07-14 21:23:49 UTC (rev 171082)
+++ trunk/Source/WebCore/platform/graphics/cairo/ImageBufferCairo.cpp	2014-07-14 21:29:08 UTC (rev 171083)
@@ -39,6 +39,8 @@
 #include "PlatformContextCairo.h"
 #include "RefPtrCairo.h"
 #include <cairo.h>
+#include <runtime/JSCInlines.h>
+#include <runtime/TypedArrayInlines.h>
 #include <wtf/Vector.h>
 #include <wtf/text/Base64.h>
 #include <wtf/text/WTFString.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to