Skip to content

Commit

Permalink
Unreviewed. Fix non-unified build
Browse files Browse the repository at this point in the history
* Source/JavaScriptCore/heap/CodeBlockSet.cpp:
* Source/JavaScriptCore/heap/JITStubRoutineSet.cpp:
* Source/JavaScriptCore/jit/JITCall.cpp:
* Source/WebCore/dom/InvokeEvent.h:
* Source/WebCore/dom/ViewTransition.h:
* Source/WebCore/html/canvas/WebGLShaderPrecisionFormat.h:
* Source/WebCore/layout/integration/inline/LayoutIntegrationBoxGeometryUpdater.cpp:
* Source/WebCore/page/OpportunisticTaskScheduler.cpp:
* Source/WebCore/platform/graphics/gstreamer/TrackPrivateBaseGStreamer.cpp:
* Source/WebCore/platform/graphics/gstreamer/mse/SourceBufferPrivateGStreamer.cpp:
* Source/WebCore/rendering/RenderLayerInlines.h:
* Source/WebCore/rendering/svg/RenderSVGResourceMasker.cpp:
* Source/WebCore/svg/SVGClipPathElement.cpp:
* Source/WebCore/xml/DOMParser.cpp:

Canonical link: https://commits.webkit.org/271471@main
  • Loading branch information
carlosgcampos committed Dec 4, 2023
1 parent fccd8d0 commit cf18010
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions Source/JavaScriptCore/heap/CodeBlockSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include "CodeBlockSet.h"

#include "CodeBlock.h"
#include "HeapInlines.h"
#include <wtf/CommaPrinter.h>

namespace JSC {
Expand Down
1 change: 1 addition & 0 deletions Source/JavaScriptCore/heap/JITStubRoutineSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#if ENABLE(JIT)

#include "GCAwareJITStubRoutine.h"
#include "HeapInlines.h"

namespace JSC {

Expand Down
1 change: 1 addition & 0 deletions Source/JavaScriptCore/jit/JITCall.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
#include "CallFrameShuffler.h"
#include "CodeBlock.h"
#include "JITInlines.h"
#include "JITThunks.h"
#include "ScratchRegisterAllocator.h"
#include "SetupVarargsFrame.h"
#include "SlowPathCall.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/dom/InvokeEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

namespace WebCore {

class Element;
class HTMLElement;

class InvokeEvent final : public Event {
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/dom/ViewTransition.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

#pragma once

#include "Document.h"
#include "Element.h"
#include "ExceptionOr.h"
#include "JSValueInWrappedObject.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/html/canvas/WebGLShaderPrecisionFormat.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#if ENABLE(WEBGL)

#include "GraphicsTypesGL.h"
#include <wtf/RefCounted.h>

namespace WebCore {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

#include "FormattingConstraints.h"
#include "InlineWalker.h"
#include "LayoutBoxGeometry.h"
#include "RenderAttachment.h"
#include "RenderBlockFlow.h"
#include "RenderBoxInlines.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/page/OpportunisticTaskScheduler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include "CommonVM.h"
#include "GCController.h"
#include "Page.h"
#include <JavaScriptCore/HeapInlines.h>
#include <wtf/DataLog.h>
#include <wtf/SystemTracing.h>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
#include "TrackPrivateBase.h"
#include <gst/tag/tag.h>
#include <wtf/text/CString.h>
#include <wtf/text/StringToIntegerConversion.h>

GST_DEBUG_CATEGORY_EXTERN(webkit_media_player_debug);
#define GST_CAT_DEFAULT webkit_media_player_debug
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
#include "VideoTrackPrivateGStreamer.h"
#include "WebKitMediaSourceGStreamer.h"
#include <wtf/NativePromise.h>
#include <wtf/text/StringToIntegerConversion.h>

GST_DEBUG_CATEGORY_EXTERN(webkit_mse_debug);
#define GST_CAT_DEFAULT webkit_mse_debug
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/rendering/RenderLayerInlines.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#pragma once

#include "RenderElementInlines.h"
#include "RenderLayer.h"
#include "RenderObjectInlines.h"
#include "RenderSVGResourceClipper.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/rendering/svg/RenderSVGResourceMasker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include "IntRect.h"
#include "RenderLayer.h"
#include "RenderLayerInlines.h"
#include "RenderSVGModelObjectInlines.h"
#include "RenderSVGResourceMaskerInlines.h"
#include "SVGContainerLayout.h"
#include "SVGLengthContext.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/svg/SVGClipPathElement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include "RenderSVGText.h"
#include "RenderStyleInlines.h"
#include "SVGElementInlines.h"
#include "SVGElementTypeHelpers.h"
#include "SVGNames.h"
#include "SVGUseElement.h"
#include "StyleResolver.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/xml/DOMParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "DOMParser.h"

#include "DOMImplementation.h"
#include "SecurityOriginPolicy.h"

namespace WebCore {

Expand Down

0 comments on commit cf18010

Please sign in to comment.