Skip to content

Commit

Permalink
Add missing includes
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=274288
rdar://128238584

Unreviewed build fixes.

Add missing includes seen when experimenting with varying sizes of unified source bundles.

* Source/WebCore/accessibility/AXTextMarker.cpp:
* Source/WebCore/accessibility/AccessibilityTableRow.cpp:
* Source/WebCore/accessibility/mac/AXObjectCacheMac.mm:
* Source/WebCore/accessibility/mac/AccessibilityObjectMac.mm:
* Source/WebCore/animation/KeyframeEffect.h:
* Source/WebCore/dom/TrustedType.cpp:
* Source/WebCore/dom/WindowEventLoop.cpp:
* Source/WebCore/editing/cocoa/WebCoreTextAttachment.mm:
* Source/WebCore/html/HTMLTextFormControlElement.cpp:
* Source/WebCore/html/ModelDocument.cpp:
* Source/WebCore/page/scrolling/mac/ScrollingTreeMac.mm:
* Source/WebCore/platform/gamepad/cocoa/GameControllerGamepad.h:
* Source/WebCore/platform/graphics/cv/ImageTransferSessionVT.h:
* Source/WebCore/platform/graphics/mac/controls/SliderTrackMac.mm:
* Source/WebCore/workers/service/ServiceWorkerRegistration.cpp:

Canonical link: https://commits.webkit.org/278900@main
  • Loading branch information
pvollan committed May 17, 2024
1 parent 693ae98 commit a441983
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions Source/WebCore/accessibility/AXTextMarker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include "config.h"
#include "AXTextMarker.h"

#include "AXIsolatedObject.h"
#include "AXLogger.h"
#include "AXObjectCache.h"
#include "AXTreeStore.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/accessibility/AccessibilityTableRow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include "config.h"
#include "AccessibilityTableRow.h"

#include "AXObjectCache.h"
#include "AccessibilityTable.h"
#include "AccessibilityTableCell.h"
#include "HTMLNames.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/accessibility/mac/AXObjectCacheMac.mm
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#import "AccessibilityObject.h"
#import "AccessibilityTable.h"
#import "DeprecatedGlobalSettings.h"
#import "LocalFrameView.h"
#import "RenderObject.h"
#import "WebAccessibilityObjectWrapperMac.h"
#import <pal/spi/cocoa/NSAccessibilitySPI.h>
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/accessibility/mac/AccessibilityObjectMac.mm
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
#import "TextCheckerClient.h"
#import "TextCheckingHelper.h"
#import "TextDecorationPainter.h"
#import "TextIterator.h"
#import <wtf/cocoa/SpanCocoa.h>

#if PLATFORM(MAC)
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/animation/KeyframeEffect.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@

#pragma once

#include "AcceleratedEffect.h"
#include "AnimationEffect.h"
#include "AnimationEffectPhase.h"
#include "BlendingKeyframes.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/dom/TrustedType.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include "JSDOMExceptionHandling.h"
#include "LocalDOMWindow.h"
#include "Node.h"
#include "SVGNames.h"
#include "Text.h"
#include "TrustedTypePolicy.h"
#include "TrustedTypePolicyFactory.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/dom/WindowEventLoop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include "CommonVM.h"
#include "CustomElementReactionQueue.h"
#include "Document.h"
#include "DocumentInlines.h"
#include "HTMLSlotElement.h"
#include "IdleCallbackController.h"
#include "Microtasks.h"
Expand Down
3 changes: 3 additions & 0 deletions Source/WebCore/editing/cocoa/WebCoreTextAttachment.mm
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@
#import "config.h"
#import "WebCoreTextAttachment.h"

#import <pal/spi/ios/UIKitSPI.h>
#import <wtf/NeverDestroyed.h>
#import <wtf/RetainPtr.h>

#import <pal/ios/UIKitSoftLink.h>

id webCoreTextAttachmentMissingPlatformImage()
{
static NeverDestroyed<RetainPtr<id>> missingImage;
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/html/HTMLTextFormControlElement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
#include "EventLoop.h"
#include "EventNames.h"
#include "FrameSelection.h"
#include "GCReachableRef.h"
#include "HTMLBRElement.h"
#include "HTMLFormElement.h"
#include "HTMLInputElement.h"
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/html/ModelDocument.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
#include "HTMLNames.h"
#include "HTMLSourceElement.h"
#include "HTMLStyleElement.h"
#include "LocalFrame.h"
#include "LocalFrameLoaderClient.h"
#include "RawDataDocumentParser.h"
#include <wtf/IsoMallocInlines.h>
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/page/scrolling/mac/ScrollingTreeMac.mm
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#import "Logging.h"
#import "PlatformCALayer.h"
#import "PlatformCALayerContentsDelayedReleaser.h"
#import "ScrollingThread.h"
#import "ScrollingTreeFixedNodeCocoa.h"
#import "ScrollingTreeFrameHostingNode.h"
#import "ScrollingTreeFrameScrollingNodeMac.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#if ENABLE(GAMEPAD)

#include "GameControllerHapticEngines.h"
#include "PlatformGamepad.h"
#include <wtf/RetainPtr.h>

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

#pragma once

#include "FloatRect.h"
#include "IntSize.h"
#include <wtf/RetainPtr.h>

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

#import "ColorSpaceCG.h"
#import "FloatRoundedRect.h"
#import "GraphicsContext.h"

namespace WebCore {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
#include "NotificationClient.h"
#include "NotificationPermission.h"
#include "PushEvent.h"
#include "PushNotificationEvent.h"
#include "ServiceWorker.h"
#include "ServiceWorkerContainer.h"
#include "ServiceWorkerGlobalScope.h"
Expand Down

0 comments on commit a441983

Please sign in to comment.