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

Changeset 287877 in webkit


Ignore:
Timestamp:
Jan 11, 2022, 6:43:30 AM (5 years ago)
Author:
Adrian Perez de Castro
Message:

Non-unified build fixes, early January 2022 edition
https://bugs.webkit.org/show_bug.cgi?id=235013

Unreviewed non-unified build fixes.

Source/JavaScriptCore:

  • wasm/js/JSWebAssemblyModule.cpp: Add missing JSWebAssemblyLinkError.h header.
  • wasm/js/JSWebAssemblyModule.h: Add missing forward declaration for the

JSC::OptimizingCallLinkInfo type.

Source/WebCore:

No new tests needed.

  • Modules/fetch/FetchBodyConsumer.cpp: Add missing FormData.h header.
  • Modules/fetch/FormDataConsumer.h: Add missing ExceptionOr.h header, and forward

declaration for the WebCore::ScriptExecutionContext type.

  • animation/CSSAnimation.cpp: Add missing KeyframeEffect.h header.
  • animation/KeyframeEffect.cpp: Add missing StyledElement.h header.
  • html/HTMLFormElement.cpp: Add missing PseudoClassChangeInvalidation.h header.
  • platform/network/SynchronousLoaderClient.cpp: Add missing SharedBuffer.h header.
  • rendering/svg/RenderSVGBlock.cpp: Add missing SVGRenderSupport.h header.
  • rendering/svg/RenderSVGForeignObject.cpp: Ditto.
  • rendering/svg/RenderSVGInline.cpp: Ditto.
  • rendering/svg/RenderSVGModelObject.cpp: Add missing SVGElementInlines.h header.
  • rendering/svg/SVGInlineTextBox.cpp: Add missing FloatConversion.h header.
  • svg/SVGViewElement.cpp: Add missing RenderElement.h header.
  • workers/service/context/ServiceWorkerFetch.h: Add missing forward declaration for the

WebCore::SharedBuffer type, remove unused one for WebCore::FragmentedSharedBuffer.

Source/WebKit:

  • Platform/IPC/SharedBufferCopy.cpp: Add missing WebCoreArgumentCoders.h header, remove now

unneeded ArgumentCoders.h header.

Location:
trunk/Source
Files:
19 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r287864 r287877  
     12022-01-11  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        Non-unified build fixes, early January 2022 edition
     4        https://bugs.webkit.org/show_bug.cgi?id=235013
     5
     6        Unreviewed non-unified build fixes.
     7
     8        * wasm/js/JSWebAssemblyModule.cpp: Add missing JSWebAssemblyLinkError.h header.
     9        * wasm/js/JSWebAssemblyModule.h: Add missing forward declaration for the
     10        JSC::OptimizingCallLinkInfo type.
     11
    1122022-01-10  Saam Barati  <sbarati@apple.com>
    213
  • trunk/Source/JavaScriptCore/wasm/js/JSWebAssemblyModule.cpp

    r287582 r287877  
    3131#include "JSCInlines.h"
    3232#include "JSWebAssemblyCompileError.h"
     33#include "JSWebAssemblyLinkError.h"
    3334#include "WasmFormat.h"
    3435#include "WasmModule.h"
  • trunk/Source/JavaScriptCore/wasm/js/JSWebAssemblyModule.h

    r287582 r287877  
    4747}
    4848
     49class JSWebAssemblyMemory;
     50class OptimizingCallLinkInfo;
    4951class SymbolTable;
    50 class JSWebAssemblyMemory;
    5152
    5253class JSWebAssemblyModule final : public JSNonFinalObject {
  • trunk/Source/WebCore/ChangeLog

    r287876 r287877  
     12022-01-11  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        Non-unified build fixes, early January 2022 edition
     4        https://bugs.webkit.org/show_bug.cgi?id=235013
     5
     6        Unreviewed non-unified build fixes.
     7
     8        No new tests needed.
     9
     10        * Modules/fetch/FetchBodyConsumer.cpp: Add missing FormData.h header.
     11        * Modules/fetch/FormDataConsumer.h: Add missing ExceptionOr.h header, and forward
     12        declaration for the WebCore::ScriptExecutionContext type.
     13        * animation/CSSAnimation.cpp: Add missing KeyframeEffect.h header.
     14        * animation/KeyframeEffect.cpp: Add missing StyledElement.h header.
     15        * html/HTMLFormElement.cpp: Add missing PseudoClassChangeInvalidation.h header.
     16        * platform/network/SynchronousLoaderClient.cpp: Add missing SharedBuffer.h header.
     17        * rendering/svg/RenderSVGBlock.cpp: Add missing SVGRenderSupport.h header.
     18        * rendering/svg/RenderSVGForeignObject.cpp: Ditto.
     19        * rendering/svg/RenderSVGInline.cpp: Ditto.
     20        * rendering/svg/RenderSVGModelObject.cpp: Add missing SVGElementInlines.h header.
     21        * rendering/svg/SVGInlineTextBox.cpp: Add missing FloatConversion.h header.
     22        * svg/SVGViewElement.cpp: Add missing RenderElement.h header.
     23        * workers/service/context/ServiceWorkerFetch.h: Add missing forward declaration for the
     24        WebCore::SharedBuffer type, remove unused one for WebCore::FragmentedSharedBuffer.
     25
    1262022-01-11  Carlos Garcia Campos  <cgarcia@igalia.com>
    227
  • trunk/Source/WebCore/Modules/fetch/FetchBodyConsumer.cpp

    r287684 r287877  
    3131
    3232#include "DOMFormData.h"
     33#include "FormData.h"
    3334#include "FormDataConsumer.h"
    3435#include "HTTPHeaderField.h"
  • trunk/Source/WebCore/Modules/fetch/FormDataConsumer.h

    r287612 r287877  
    2626#pragma once
    2727
     28#include "ExceptionOr.h"
    2829#include "ScriptExecutionContextIdentifier.h"
    2930#include <wtf/FastMalloc.h>
     
    3738class BlobLoader;
    3839class FormData;
     40class ScriptExecutionContext;
    3941
    4042class FormDataConsumer : public CanMakeWeakPtr<FormDataConsumer> {
  • trunk/Source/WebCore/animation/CSSAnimation.cpp

    r287707 r287877  
    3030#include "AnimationEvent.h"
    3131#include "InspectorInstrumentation.h"
     32#include "KeyframeEffect.h"
    3233#include "RenderStyle.h"
    3334#include <wtf/IsoMallocInlines.h>
  • trunk/Source/WebCore/animation/KeyframeEffect.cpp

    r287835 r287877  
    5959#include "StyleResolver.h"
    6060#include "StyleScope.h"
     61#include "StyledElement.h"
    6162#include "TimingFunction.h"
    6263#include "TranslateTransformOperation.h"
  • trunk/Source/WebCore/html/HTMLFormElement.cpp

    r287818 r287877  
    5353#include "NodeRareData.h"
    5454#include "Page.h"
     55#include "PseudoClassChangeInvalidation.h"
    5556#include "RadioNodeList.h"
    5657#include "RenderTextControl.h"
  • trunk/Source/WebCore/platform/network/SynchronousLoaderClient.cpp

    r287684 r287877  
    3030#include "ResourceHandle.h"
    3131#include "ResourceRequest.h"
     32#include "SharedBuffer.h"
    3233#include <wtf/CompletionHandler.h>
    3334
  • trunk/Source/WebCore/rendering/svg/RenderSVGBlock.cpp

    r286392 r287877  
    2525#include "RenderSVGResource.h"
    2626#include "SVGGraphicsElement.h"
     27#include "SVGRenderSupport.h"
    2728#include "SVGResourcesCache.h"
    2829#include "StyleInheritedData.h"
  • trunk/Source/WebCore/rendering/svg/RenderSVGForeignObject.cpp

    r287731 r287877  
    3232#include "SVGElementTypeHelpers.h"
    3333#include "SVGForeignObjectElement.h"
     34#include "SVGRenderSupport.h"
    3435#include "SVGRenderingContext.h"
    3536#include "SVGResourcesCache.h"
  • trunk/Source/WebCore/rendering/svg/RenderSVGInline.cpp

    r284078 r287877  
    2828#include "SVGGraphicsElement.h"
    2929#include "SVGInlineFlowBox.h"
     30#include "SVGRenderSupport.h"
    3031#include "SVGResourcesCache.h"
    3132#include <wtf/IsoMallocInlines.h>
  • trunk/Source/WebCore/rendering/svg/RenderSVGModelObject.cpp

    r287538 r287877  
    3939#include "RenderSVGResource.h"
    4040#include "RenderView.h"
     41#include "SVGElementInlines.h"
    4142#include "SVGGraphicsElement.h"
    4243#include "SVGLocatable.h"
  • trunk/Source/WebCore/rendering/svg/SVGInlineTextBox.cpp

    r287677 r287877  
    2323#include "SVGInlineTextBox.h"
    2424
     25#include "FloatConversion.h"
    2526#include "Frame.h"
    2627#include "FrameView.h"
  • trunk/Source/WebCore/svg/SVGViewElement.cpp

    r251461 r287877  
    2323#include "SVGViewElement.h"
    2424
     25#include "RenderElement.h"
    2526#include "RenderSVGResource.h"
    2627#include "SVGNames.h"
  • trunk/Source/WebCore/workers/service/context/ServiceWorkerFetch.h

    r287684 r287877  
    4343class ServiceWorkerGlobalScope;
    4444class ServiceWorkerGlobalScope;
    45 class FragmentedSharedBuffer;
     45class SharedBuffer;
    4646
    4747namespace ServiceWorkerFetch {
  • trunk/Source/WebKit/ChangeLog

    r287876 r287877  
     12022-01-11  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        Non-unified build fixes, early January 2022 edition
     4        https://bugs.webkit.org/show_bug.cgi?id=235013
     5
     6        Unreviewed non-unified build fixes.
     7
     8        * Platform/IPC/SharedBufferCopy.cpp: Add missing WebCoreArgumentCoders.h header, remove now
     9        unneeded ArgumentCoders.h header.
     10
    1112022-01-11  Carlos Garcia Campos  <cgarcia@igalia.com>
    212
  • trunk/Source/WebKit/Platform/IPC/SharedBufferCopy.cpp

    r287808 r287877  
    2727#include "SharedBufferCopy.h"
    2828
    29 #include "ArgumentCoders.h"
    3029#include "Decoder.h"
    3130#include "Encoder.h"
     31#include "WebCoreArgumentCoders.h"
    3232
    3333namespace IPC {
Note: See TracChangeset for help on using the changeset viewer.