Title: [278283] trunk/Source/WebCore
Revision
278283
Author
[email protected]
Date
2021-05-31 14:14:52 -0700 (Mon, 31 May 2021)

Log Message

Non-unified build fixes, very early June 2021 edition
https://bugs.webkit.org/show_bug.cgi?id=226471

Unreviewed non-unified build fixes.

No new tests needed.


* css/calc/CSSCalcOperationNode.cpp: Add missing CSSCalcValua.h, CSSPrimitiveValue.h,
CSSUnits.h, and wtf/text/TextStream.h headers.
* css/calc/CSSCalcOperationNode.h: Add missing CalcOperator.h header.
* css/calc/CSSCalcValue.cpp: Add missing CSSCalcSymbolTable.h, CalcExpressionInversion.h,
CalcExpressionNumber.h, and CalcExpressionOperation.h headers.
* platform/calc/CalcExpressionInversion.h: Add missing wtf/TypeCasts.h header, remove
unneeded <memory> header.
* platform/calc/CalcExpressionNegation.h: Ditto.
* platform/calc/CalcExpressionNumber.h: Add missing wtf/TypeCasts.h header.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (278282 => 278283)


--- trunk/Source/WebCore/ChangeLog	2021-05-31 18:28:34 UTC (rev 278282)
+++ trunk/Source/WebCore/ChangeLog	2021-05-31 21:14:52 UTC (rev 278283)
@@ -1,3 +1,22 @@
+2021-05-31  Adrian Perez de Castro  <[email protected]>
+
+        Non-unified build fixes, very early June 2021 edition
+        https://bugs.webkit.org/show_bug.cgi?id=226471
+
+        Unreviewed non-unified build fixes.
+
+        No new tests needed.
+
+        * css/calc/CSSCalcOperationNode.cpp: Add missing CSSCalcValua.h, CSSPrimitiveValue.h,
+        CSSUnits.h, and wtf/text/TextStream.h headers.
+        * css/calc/CSSCalcOperationNode.h: Add missing CalcOperator.h header.
+        * css/calc/CSSCalcValue.cpp: Add missing CSSCalcSymbolTable.h, CalcExpressionInversion.h,
+        CalcExpressionNumber.h, and CalcExpressionOperation.h headers.
+        * platform/calc/CalcExpressionInversion.h: Add missing wtf/TypeCasts.h header, remove
+        unneeded <memory> header.
+        * platform/calc/CalcExpressionNegation.h: Ditto.
+        * platform/calc/CalcExpressionNumber.h: Add missing wtf/TypeCasts.h header.
+
 2021-04-29  Sergio Villar Senin  <[email protected]>
 
         Enable <summary> to be a flex container

Modified: trunk/Source/WebCore/css/calc/CSSCalcOperationNode.cpp (278282 => 278283)


--- trunk/Source/WebCore/css/calc/CSSCalcOperationNode.cpp	2021-05-31 18:28:34 UTC (rev 278282)
+++ trunk/Source/WebCore/css/calc/CSSCalcOperationNode.cpp	2021-05-31 21:14:52 UTC (rev 278283)
@@ -30,7 +30,11 @@
 #include "CSSCalcInvertNode.h"
 #include "CSSCalcNegateNode.h"
 #include "CSSCalcPrimitiveValueNode.h"
+#include "CSSCalcValue.h"
+#include "CSSPrimitiveValue.h"
+#include "CSSUnits.h"
 #include "CalcExpressionOperation.h"
+#include <wtf/text/TextStream.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/css/calc/CSSCalcOperationNode.h (278282 => 278283)


--- trunk/Source/WebCore/css/calc/CSSCalcOperationNode.h	2021-05-31 18:28:34 UTC (rev 278282)
+++ trunk/Source/WebCore/css/calc/CSSCalcOperationNode.h	2021-05-31 21:14:52 UTC (rev 278283)
@@ -26,6 +26,7 @@
 #pragma once
 
 #include "CSSCalcExpressionNode.h"
+#include "CalcOperator.h"
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/css/calc/CSSCalcValue.cpp (278282 => 278283)


--- trunk/Source/WebCore/css/calc/CSSCalcValue.cpp	2021-05-31 18:28:34 UTC (rev 278282)
+++ trunk/Source/WebCore/css/calc/CSSCalcValue.cpp	2021-05-31 21:14:52 UTC (rev 278283)
@@ -37,12 +37,17 @@
 #include "CSSCalcNegateNode.h"
 #include "CSSCalcOperationNode.h"
 #include "CSSCalcPrimitiveValueNode.h"
+#include "CSSCalcSymbolTable.h"
 #include "CSSParser.h"
 #include "CSSParserTokenRange.h"
 #include "CSSPrimitiveValueMappings.h"
 #include "CSSValueKeywords.h"
 #include "CalcExpressionBlendLength.h"
+#include "CalcExpressionInversion.h"
 #include "CalcExpressionLength.h"
+#include "CalcExpressionNegation.h"
+#include "CalcExpressionNumber.h"
+#include "CalcExpressionOperation.h"
 #include "Logging.h"
 #include "StyleResolver.h"
 #include <wtf/MathExtras.h>

Modified: trunk/Source/WebCore/platform/calc/CalcExpressionInversion.h (278282 => 278283)


--- trunk/Source/WebCore/platform/calc/CalcExpressionInversion.h	2021-05-31 18:28:34 UTC (rev 278282)
+++ trunk/Source/WebCore/platform/calc/CalcExpressionInversion.h	2021-05-31 21:14:52 UTC (rev 278283)
@@ -26,7 +26,7 @@
 #pragma once
 
 #include "CalcExpressionNode.h"
-#include <memory>
+#include <wtf/TypeCasts.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/platform/calc/CalcExpressionNegation.h (278282 => 278283)


--- trunk/Source/WebCore/platform/calc/CalcExpressionNegation.h	2021-05-31 18:28:34 UTC (rev 278282)
+++ trunk/Source/WebCore/platform/calc/CalcExpressionNegation.h	2021-05-31 21:14:52 UTC (rev 278283)
@@ -26,7 +26,7 @@
 #pragma once
 
 #include "CalcExpressionNode.h"
-#include <memory>
+#include <wtf/TypeCasts.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/platform/calc/CalcExpressionNumber.h (278282 => 278283)


--- trunk/Source/WebCore/platform/calc/CalcExpressionNumber.h	2021-05-31 18:28:34 UTC (rev 278282)
+++ trunk/Source/WebCore/platform/calc/CalcExpressionNumber.h	2021-05-31 21:14:52 UTC (rev 278283)
@@ -26,6 +26,7 @@
 #pragma once
 
 #include "CalcExpressionNode.h"
+#include <wtf/TypeCasts.h>
 
 namespace WebCore {
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to