⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 278283 in webkit


Ignore:
Timestamp:
May 31, 2021, 2:14:52 PM (5 years ago)
Author:
Adrian Perez de Castro
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.
Location:
trunk/Source/WebCore
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r278280 r278283  
     12021-05-31  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        Non-unified build fixes, very early June 2021 edition
     4        https://bugs.webkit.org/show_bug.cgi?id=226471
     5
     6        Unreviewed non-unified build fixes.
     7
     8        No new tests needed.
     9
     10        * css/calc/CSSCalcOperationNode.cpp: Add missing CSSCalcValua.h, CSSPrimitiveValue.h,
     11        CSSUnits.h, and wtf/text/TextStream.h headers.
     12        * css/calc/CSSCalcOperationNode.h: Add missing CalcOperator.h header.
     13        * css/calc/CSSCalcValue.cpp: Add missing CSSCalcSymbolTable.h, CalcExpressionInversion.h,
     14        CalcExpressionNumber.h, and CalcExpressionOperation.h headers.
     15        * platform/calc/CalcExpressionInversion.h: Add missing wtf/TypeCasts.h header, remove
     16        unneeded <memory> header.
     17        * platform/calc/CalcExpressionNegation.h: Ditto.
     18        * platform/calc/CalcExpressionNumber.h: Add missing wtf/TypeCasts.h header.
     19
    1202021-04-29  Sergio Villar Senin  <svillar@igalia.com>
    221
  • trunk/Source/WebCore/css/calc/CSSCalcOperationNode.cpp

    r278253 r278283  
    3131#include "CSSCalcNegateNode.h"
    3232#include "CSSCalcPrimitiveValueNode.h"
     33#include "CSSCalcValue.h"
     34#include "CSSPrimitiveValue.h"
     35#include "CSSUnits.h"
    3336#include "CalcExpressionOperation.h"
     37#include <wtf/text/TextStream.h>
    3438
    3539namespace WebCore {
  • trunk/Source/WebCore/css/calc/CSSCalcOperationNode.h

    r278246 r278283  
    2727
    2828#include "CSSCalcExpressionNode.h"
     29#include "CalcOperator.h"
    2930
    3031namespace WebCore {
  • trunk/Source/WebCore/css/calc/CSSCalcValue.cpp

    r278261 r278283  
    3838#include "CSSCalcOperationNode.h"
    3939#include "CSSCalcPrimitiveValueNode.h"
     40#include "CSSCalcSymbolTable.h"
    4041#include "CSSParser.h"
    4142#include "CSSParserTokenRange.h"
     
    4344#include "CSSValueKeywords.h"
    4445#include "CalcExpressionBlendLength.h"
     46#include "CalcExpressionInversion.h"
    4547#include "CalcExpressionLength.h"
     48#include "CalcExpressionNegation.h"
     49#include "CalcExpressionNumber.h"
     50#include "CalcExpressionOperation.h"
    4651#include "Logging.h"
    4752#include "StyleResolver.h"
  • trunk/Source/WebCore/platform/calc/CalcExpressionInversion.h

    r278246 r278283  
    2727
    2828#include "CalcExpressionNode.h"
    29 #include <memory>
     29#include <wtf/TypeCasts.h>
    3030
    3131namespace WebCore {
  • trunk/Source/WebCore/platform/calc/CalcExpressionNegation.h

    r278246 r278283  
    2727
    2828#include "CalcExpressionNode.h"
    29 #include <memory>
     29#include <wtf/TypeCasts.h>
    3030
    3131namespace WebCore {
  • trunk/Source/WebCore/platform/calc/CalcExpressionNumber.h

    r278246 r278283  
    2727
    2828#include "CalcExpressionNode.h"
     29#include <wtf/TypeCasts.h>
    2930
    3031namespace WebCore {
Note: See TracChangeset for help on using the changeset viewer.