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

Changeset 283482 in webkit


Ignore:
Timestamp:
Oct 3, 2021, 4:00:17 PM (5 years ago)
Author:
don.olmstead@sony.com
Message:

Non-unified build fixes, early October 2021 edition
https://bugs.webkit.org/show_bug.cgi?id=231143

Unreviewed non-unified build fixes.

Source/JavaScriptCore:

  • jit/BaselineJITCode.cpp:

Source/WebCore:

  • Modules/filesystemaccess/FileSystemHandle.cpp:
  • Modules/push-api/PushMessageData.h:
  • html/track/InbandTextTrack.cpp:
  • inspector/agents/InspectorCanvasAgent.h:
  • loader/CrossOriginOpenerPolicy.cpp:
  • rendering/LegacyLineLayout.cpp:
  • rendering/RenderBlockFlow.cpp:

Source/WebKit:

  • NetworkProcess/NetworkResourceLoadParameters.h:
  • UIProcess/API/C/WKContext.cpp:

(WKContextTerminateGPUProcess):

  • WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp:
Location:
trunk/Source
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r283479 r283482  
     12021-10-03  Don Olmstead  <don.olmstead@sony.com>
     2
     3        Non-unified build fixes, early October 2021 edition
     4        https://bugs.webkit.org/show_bug.cgi?id=231143
     5
     6        Unreviewed non-unified build fixes.
     7
     8        * jit/BaselineJITCode.cpp:
     9
    1102021-10-03  Lauro Moura  <lmoura@igalia.com>
    211
  • trunk/Source/JavaScriptCore/jit/BaselineJITCode.cpp

    r283139 r283482  
    3131#include "JITMathIC.h"
    3232#include "JumpTable.h"
     33#include "PCToCodeOriginMap.h"
    3334#include "StructureStubInfo.h"
    3435
  • trunk/Source/WebCore/ChangeLog

    r283481 r283482  
     12021-10-03  Don Olmstead  <don.olmstead@sony.com>
     2
     3        Non-unified build fixes, early October 2021 edition
     4        https://bugs.webkit.org/show_bug.cgi?id=231143
     5
     6        Unreviewed non-unified build fixes.
     7
     8        * Modules/filesystemaccess/FileSystemHandle.cpp:
     9        * Modules/push-api/PushMessageData.h:
     10        * html/track/InbandTextTrack.cpp:
     11        * inspector/agents/InspectorCanvasAgent.h:
     12        * loader/CrossOriginOpenerPolicy.cpp:
     13        * rendering/LegacyLineLayout.cpp:
     14        * rendering/RenderBlockFlow.cpp:
     15
    1162021-10-03  Alan Bujtas  <zalan@apple.com>
    217
  • trunk/Source/WebCore/Modules/filesystemaccess/FileSystemHandle.cpp

    r283271 r283482  
    2727#include "FileSystemHandle.h"
    2828
     29#include "FileSystemStorageConnection.h"
    2930#include "JSDOMPromiseDeferred.h"
    3031#include <wtf/IsoMallocInlines.h>
  • trunk/Source/WebCore/Modules/push-api/PushMessageData.h

    r283377 r283482  
    3131#include <JavaScriptCore/ArrayBuffer.h>
    3232#include <JavaScriptCore/JSCJSValue.h>
     33#include <wtf/IsoMalloc.h>
    3334#include <wtf/Vector.h>
    3435
  • trunk/Source/WebCore/html/track/InbandTextTrack.cpp

    r283237 r283482  
    3333#include "InbandTextTrackPrivate.h"
    3434#include "InbandWebVTTTextTrack.h"
     35#include "TextTrackClient.h"
    3536#include <wtf/IsoMallocInlines.h>
    3637
  • trunk/Source/WebCore/inspector/agents/InspectorCanvasAgent.h

    r280467 r283482  
    4545
    4646class CanvasRenderingContext;
     47class Frame;
     48
    4749#if ENABLE(WEBGL)
    4850class InspectorShaderProgram;
  • trunk/Source/WebCore/loader/CrossOriginOpenerPolicy.cpp

    r283179 r283482  
    3838#include "ResourceResponse.h"
    3939#include "ScriptExecutionContext.h"
     40#include "SecurityPolicy.h"
    4041#include <wtf/JSONValues.h>
    4142
  • trunk/Source/WebCore/rendering/LegacyLineLayout.cpp

    r283464 r283482  
    3232#include "HTMLParserIdioms.h"
    3333#include "InlineIteratorBox.h"
     34#include "InlineIteratorTextBox.h"
    3435#include "InlineTextBoxStyle.h"
    3536#include "InlineWalker.h"
  • trunk/Source/WebCore/rendering/RenderBlockFlow.cpp

    r283481 r283482  
    3636#include "InlineIteratorBox.h"
    3737#include "InlineIteratorLine.h"
     38#include "InlineWalker.h"
    3839#include "LayoutIntegrationLineLayout.h"
    3940#include "LayoutRepainter.h"
  • trunk/Source/WebKit/ChangeLog

    r283478 r283482  
     12021-10-03  Don Olmstead  <don.olmstead@sony.com>
     2
     3        Non-unified build fixes, early October 2021 edition
     4        https://bugs.webkit.org/show_bug.cgi?id=231143
     5
     6        Unreviewed non-unified build fixes.
     7
     8        * NetworkProcess/NetworkResourceLoadParameters.h:
     9        * UIProcess/API/C/WKContext.cpp:
     10        (WKContextTerminateGPUProcess):
     11        * WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp:
     12
    1132021-10-03  Basuke Suzuki  <basuke.suzuki@sony.com>
    214
  • trunk/Source/WebKit/NetworkProcess/NetworkResourceLoadParameters.h

    r283179 r283482  
    3636#include <WebCore/NavigationRequester.h>
    3737#include <WebCore/ResourceLoaderIdentifier.h>
     38#include <WebCore/SecurityContext.h>
    3839#include <wtf/Seconds.h>
    3940
  • trunk/Source/WebKit/UIProcess/API/C/WKContext.cpp

    r283114 r283482  
    550550{
    551551#if ENABLE(GPU_PROCESS)
    552     if (auto* gpuProcess = GPUProcessProxy::singletonIfCreated())
     552    if (auto* gpuProcess = WebKit::GPUProcessProxy::singletonIfCreated())
    553553        gpuProcess->terminateForTesting();
    554554#endif
  • trunk/Source/WebKit/WebProcess/GPU/media/MediaPlayerPrivateRemote.cpp

    r282848 r283482  
    4747#include <WebCore/NotImplemented.h>
    4848#include <WebCore/PlatformLayer.h>
     49#include <WebCore/PlatformScreen.h>
    4950#include <WebCore/PlatformTimeRanges.h>
    5051#include <WebCore/ResourceError.h>
     
    13141315}
    13151316
    1316 void MediaPlayerPrivateRemote::setPreferredDynamicRangeMode(DynamicRangeMode mode)
     1317void MediaPlayerPrivateRemote::setPreferredDynamicRangeMode(WebCore::DynamicRangeMode mode)
    13171318{
    13181319    connection().send(Messages::RemoteMediaPlayerProxy::SetPreferredDynamicRangeMode(mode), m_id);
Note: See TracChangeset for help on using the changeset viewer.