Skip to content

Commit

Permalink
Unreviewed. Fix non-unified build
Browse files Browse the repository at this point in the history
* Source/JavaScriptCore/heap/GCLogging.h:
* Source/WebCore/css/color/CSSColorDescriptors.h:
(WebCore::RGBFunctionLegacy::std::make_tuple): Deleted.
(WebCore::RGBFunctionModernAbsolute::std::make_tuple): Deleted.
(WebCore::RGBFunctionModernRelative::std::make_tuple): Deleted.
(WebCore::HSLFunctionLegacy::std::make_tuple): Deleted.
(WebCore::HSLFunctionModern::std::make_tuple): Deleted.
(WebCore::HWBFunction::std::make_tuple): Deleted.
(WebCore::LabFunction::std::make_tuple): Deleted.
(WebCore::LCHFunction::std::make_tuple): Deleted.
(WebCore::OKLabFunction::std::make_tuple): Deleted.
(WebCore::OKLCHFunction::std::make_tuple): Deleted.
(WebCore::ColorRGBFunction::std::make_tuple): Deleted.
(WebCore::ColorXYZFunction::std::make_tuple): Deleted.
* Source/WebCore/css/parser/CSSPropertyParserConsumer+CSSPrimitiveValueResolver.cpp:
* Source/WebCore/css/parser/CSSPropertyParserConsumer+CSSPrimitiveValueResolver.h:
* Source/WebCore/css/parser/CSSPropertyParserConsumer+Color.cpp:
* Source/WebCore/css/parser/CSSPropertyParserConsumer+Integer.cpp:
* Source/WebCore/css/parser/CSSPropertyParserConsumer+MetaConsumer.h:
* Source/WebCore/css/parser/CSSPropertyParserConsumer+Percent.cpp:
* Source/WebCore/css/parser/CSSPropertyParserConsumer+RawResolver.cpp:
* Source/WebCore/css/parser/CSSPropertyParserWorkerSafe.cpp:
* Source/WebCore/html/HTMLDialogElement.cpp:
* Source/WebCore/html/LazyLoadFrameObserver.cpp:
* Source/WebCore/html/LazyLoadImageObserver.cpp:
* Source/WebCore/platform/graphics/PlatformColorSpace.h:
* Source/WebCore/platform/graphics/skia/GraphicsContextGLSkia.cpp:
* Source/WebCore/platform/graphics/skia/SkiaAcceleratedBufferPool.cpp:
* Source/WebCore/workers/service/ExtendableMessageEvent.cpp:
* Source/WebCore/xml/XSLTProcessorLibxslt.cpp:
* Source/WebKit/WebProcess/WebPage/CoordinatedGraphics/CompositingCoordinator.cpp:

Canonical link: https://commits.webkit.org/278602@main
  • Loading branch information
carlosgcampos committed May 10, 2024
1 parent c1735d0 commit 4142998
Show file tree
Hide file tree
Showing 18 changed files with 23 additions and 1 deletion.
1 change: 1 addition & 0 deletions Source/JavaScriptCore/heap/GCLogging.h
Expand Up @@ -26,6 +26,7 @@
#pragma once

#include <wtf/Assertions.h>
#include <wtf/text/ASCIILiteral.h>

namespace JSC {

Expand Down
3 changes: 3 additions & 0 deletions Source/WebCore/css/color/CSSColorDescriptors.h
Expand Up @@ -28,8 +28,10 @@
#include "CSSPropertyParserConsumer+RawTypes.h"
#include "Color.h"
#include "ColorTypes.h"
#include <wtf/Brigand.h>

namespace WebCore {
namespace CSSPropertyParserHelpers {

enum class CSSColorFunctionSyntax { Legacy, Modern };

Expand Down Expand Up @@ -349,4 +351,5 @@ struct ColorXYZFunction {
);
};

} // namespace CSSPropertyParserHelpers
} // namespace WebCore
Expand Up @@ -25,6 +25,7 @@
#include "config.h"
#include "CSSPropertyParserConsumer+CSSPrimitiveValueResolver.h"

#include "CSSCalcSymbolTable.h"
#include "CSSCalcValue.h"
#include "CSSParserTokenRange.h"
#include "CSSPropertyParserConsumer+AngleDefinitions.h"
Expand Down
Expand Up @@ -27,6 +27,7 @@
#include "CSSPrimitiveValue.h"
#include "CSSPropertyParserConsumer+MetaConsumer.h"
#include "CSSPropertyParserConsumer+MetaResolver.h"
#include "CSSPropertyParserConsumer+Primitives.h"
#include <wtf/RefPtr.h>

namespace WebCore {
Expand Down
2 changes: 2 additions & 0 deletions Source/WebCore/css/parser/CSSPropertyParserConsumer+Color.cpp
Expand Up @@ -36,7 +36,9 @@
#include "CSSPropertyParserConsumer+Ident.h"
#include "CSSPropertyParserConsumer+MetaConsumer.h"
#include "CSSPropertyParserConsumer+NoneDefinitions.h"
#include "CSSPropertyParserConsumer+Number.h"
#include "CSSPropertyParserConsumer+NumberDefinitions.h"
#include "CSSPropertyParserConsumer+Percent.h"
#include "CSSPropertyParserConsumer+PercentDefinitions.h"
#include "CSSPropertyParserConsumer+Primitives.h"
#include "CSSPropertyParserConsumer+RawResolver.h"
Expand Down
Expand Up @@ -24,9 +24,10 @@

#include "config.h"
#include "CSSPropertyParserConsumer+Integer.h"
#include "CSSPropertyParserConsumer+IntegerDefinitions.h"

#include "CSSCalcSymbolTable.h"
#include "CSSPropertyParserConsumer+CSSPrimitiveValueResolver.h"
#include "CSSPropertyParserConsumer+IntegerDefinitions.h"
#include "CSSPropertyParserConsumer+MetaConsumer.h"
#include "CSSPropertyParserConsumer+RawResolver.h"

Expand Down
Expand Up @@ -24,9 +24,11 @@

#pragma once

#include "CSSCalcValue.h"
#include "CSSParserToken.h"
#include "CSSParserTokenRange.h"
#include "CSSPropertyParserConsumer+MetaConsumerDefinitions.h"
#include "CSSPropertyParserConsumer+Primitives.h"
#include "CSSPropertyParserConsumer+RawTypes.h"
#include <optional>
#include <type_traits>
Expand Down
Expand Up @@ -27,6 +27,7 @@
#include "CSSPropertyParserConsumer+PercentDefinitions.h"

#include "CSSCalcParser.h"
#include "CSSCalcSymbolTable.h"
#include "CSSCalcValue.h"
#include "CSSPropertyParserConsumer+CSSPrimitiveValueResolver.h"
#include "CSSPropertyParserConsumer+MetaConsumer.h"
Expand Down
Expand Up @@ -25,6 +25,7 @@
#include "config.h"
#include "CSSPropertyParserConsumer+RawResolver.h"

#include "CSSCalcSymbolTable.h"
#include "CSSCalcValue.h"
#include "CSSParserTokenRange.h"
#include "CSSPropertyParserConsumer+AngleDefinitions.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/parser/CSSPropertyParserWorkerSafe.cpp
Expand Up @@ -44,6 +44,7 @@
#include "CSSPropertyParserConsumer+Ident.h"
#include "CSSPropertyParserConsumer+Integer.h"
#include "CSSPropertyParserConsumer+List.h"
#include "CSSPropertyParserConsumer+Number.h"
#include "CSSPropertyParserConsumer+Percent.h"
#include "CSSPropertyParserHelpers.h"
#include "CSSToLengthConversionData.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/html/HTMLDialogElement.cpp
Expand Up @@ -34,6 +34,7 @@
#include "HTMLNames.h"
#include "PopoverData.h"
#include "PseudoClassChangeInvalidation.h"
#include "RenderBlock.h"
#include "RenderElement.h"
#include "ScopedEventQueue.h"
#include "TypedElementDescendantIteratorInlines.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/html/LazyLoadFrameObserver.cpp
Expand Up @@ -26,6 +26,7 @@
#include "config.h"
#include "LazyLoadFrameObserver.h"

#include "DocumentInlines.h"
#include "HTMLIFrameElement.h"
#include "IntersectionObserverCallback.h"
#include "IntersectionObserverEntry.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/html/LazyLoadImageObserver.cpp
Expand Up @@ -26,6 +26,7 @@
#include "config.h"
#include "LazyLoadImageObserver.h"

#include "DocumentInlines.h"
#include "HTMLImageElement.h"
#include "IntersectionObserverCallback.h"
#include "IntersectionObserverEntry.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/platform/graphics/PlatformColorSpace.h
Expand Up @@ -30,6 +30,7 @@
typedef struct CGColorSpace* CGColorSpaceRef;
#elif USE(SKIA)
#include <skia/core/SkColorSpace.h>
#include <skia/core/SkData.h>
#else
#include <optional>
#endif
Expand Down
Expand Up @@ -33,6 +33,7 @@
#include "NotImplemented.h"
#include "PixelBuffer.h"
#include "PlatformDisplay.h"
#include "SharedBuffer.h"
#include <skia/core/SkData.h>
#include <skia/core/SkImage.h>

Expand Down
Expand Up @@ -30,6 +30,7 @@
#include "FontRenderOptions.h"
#include "GLContext.h"
#include "PlatformDisplay.h"
#include <skia/core/SkColorSpace.h>
#include <skia/gpu/GrBackendSurface.h>
#include <skia/gpu/ganesh/SkSurfaceGanesh.h>
#include <skia/gpu/ganesh/gl/GrGLBackendSurface.h>
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/workers/service/ExtendableMessageEvent.cpp
Expand Up @@ -28,6 +28,7 @@
#include "ExtendableMessageEvent.h"

#include "EventNames.h"
#include "JSDOMConvert.h"
#include "JSExtendableMessageEvent.h"
#include <wtf/IsoMallocInlines.h>

Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/xml/XSLTProcessorLibxslt.cpp
Expand Up @@ -41,6 +41,7 @@
#include "SharedBuffer.h"
#include "TransformSource.h"
#include "XMLDocumentParser.h"
#include "XMLDocumentParserScope.h"
#include "XSLTExtensions.h"
#include "XSLTUnicodeSort.h"
#include "markup.h"
Expand Down

0 comments on commit 4142998

Please sign in to comment.