Skip to content

Commit

Permalink
Unreviewed. Fix non-unified build
Browse files Browse the repository at this point in the history
* Source/WebCore/bindings/js/JSExtendableMessageEventCustom.cpp:
* Source/WebCore/css/calc/CSSCalcPrimitiveValueNode.cpp:
* Source/WebCore/css/calc/CSSCalcSymbolNode.cpp:
* Source/WebCore/css/color/CSSUnresolvedColorKeyword.cpp:
* Source/WebCore/css/color/CSSUnresolvedColorKeyword.h:
* Source/WebCore/css/color/StyleColor.cpp:
* Source/WebCore/rendering/GridLayoutFunctions.h:
* Source/WebCore/rendering/svg/SVGTextLayoutAttributes.cpp:
* Source/WebKit/UIProcess/RemotePageProxy.cpp:
(WebKit::RemotePageProxy::didStartProvisionalLoadForFrame):

Canonical link: https://commits.webkit.org/278749@main
  • Loading branch information
carlosgcampos committed May 14, 2024
1 parent f6a5f33 commit c0163f6
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Source/WebCore/bindings/js/JSExtendableMessageEventCustom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@

#include "JSDOMConstructor.h"
#include "JSDOMConvertInterface.h"
#include "JSDOMConvertSequences.h"
#include "JSDOMConvertStrings.h"
#include "JSMessagePort.h"

namespace WebCore {

Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/calc/CSSCalcPrimitiveValueNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include "CSSCalcPrimitiveValueNode.h"

#include "CSSCalcCategoryMapping.h"
#include "CSSCalcSymbolTable.h"
#include "CSSPrimitiveValue.h"
#include "CSSPrimitiveValueMappings.h"
#include "CalcExpressionLength.h"
Expand Down
3 changes: 3 additions & 0 deletions Source/WebCore/css/calc/CSSCalcSymbolNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@
#include "config.h"
#include "CSSCalcSymbolNode.h"

#include "CSSCalcCategoryMapping.h"
#include "CSSCalcSymbolTable.h"
#include "CSSPrimitiveValue.h"
#include "CSSValueKeywords.h"
#include "CalcExpressionNode.h"
#include <wtf/text/TextStream.h>

namespace WebCore {
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/color/CSSUnresolvedColorKeyword.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include "CSSUnresolvedColorResolutionContext.h"
#include "CSSValueKeywords.h"
#include "ColorFromPrimitiveValue.h"
#include "StyleBuilderState.h"

namespace WebCore {

Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/color/CSSUnresolvedColorKeyword.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ namespace Style {
enum class ForVisitedLink : bool;
}

class Color;
class Document;
class RenderStyle;
class StyleColor;
Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/css/color/StyleColor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include "config.h"
#include "StyleColor.h"

#include "CSSUnresolvedColor.h"
#include "HashTools.h"
#include "RenderTheme.h"
#include "StyleColorMix.h"
Expand Down
2 changes: 1 addition & 1 deletion Source/WebCore/rendering/GridLayoutFunctions.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@

#include "GridPositionsResolver.h"
#include "LayoutUnit.h"
#include "RenderBox.h"

namespace WebCore {

enum class ItemPosition : uint8_t;
class RenderBox;
class RenderElement;
class RenderGrid;

Expand Down
1 change: 1 addition & 0 deletions Source/WebCore/rendering/svg/SVGTextLayoutAttributes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "config.h"
#include "SVGTextLayoutAttributes.h"

#include "RenderSVGInlineText.h"
#include <stdio.h>
#include <wtf/text/CString.h>

Expand Down
2 changes: 1 addition & 1 deletion Source/WebKit/UIProcess/RemotePageProxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ void RemotePageProxy::didFailProvisionalLoadForFrame(FrameInfoData&& frameInfo,
m_page->didFailProvisionalLoadForFrameShared(m_process.copyRef(), *frame, WTFMove(frameInfo), WTFMove(request), navigationID, provisionalURL, error, willContinueLoading, userData, willInternallyHandleFailure);
}

void RemotePageProxy::didStartProvisionalLoadForFrame(FrameIdentifier frameID, FrameInfoData&& frameInfo, ResourceRequest&& request, uint64_t navigationID, URL&& url, URL&& unreachableURL, const UserData& userData)
void RemotePageProxy::didStartProvisionalLoadForFrame(WebCore::FrameIdentifier frameID, FrameInfoData&& frameInfo, WebCore::ResourceRequest&& request, uint64_t navigationID, URL&& url, URL&& unreachableURL, const UserData& userData)
{
if (!m_page)
return;
Expand Down

0 comments on commit c0163f6

Please sign in to comment.