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

Changeset 268895 in webkit


Ignore:
Timestamp:
Oct 22, 2020, 3:06:51 PM (6 years ago)
Author:
Adrian Perez de Castro
Message:

Non-unified build fixes, late-ish October 2020 edition
https://bugs.webkit.org/show_bug.cgi?id=218095

Unreviewed non-unified build fix.

No new tests needed.

  • Modules/speech/SpeechRecognitionResultList.h: Include SpeechRecognitionResult.h

instead of using a forward declaration.

  • layout/integration/LayoutIntegrationLineLayout.cpp: Add missing RenderImage.h header.
  • page/scrolling/ScrollingTreeLatchingController.h: Add missing wtf/OptionSet.h header

and forward-declare WheelEventProcessingSteps.

  • workers/WorkerOrWorkletGlobalScope.cpp: Add missing WorkerOrWorkletThread.h and

WorkerRunLoop.h headers.

Location:
trunk/Source/WebCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r268893 r268895  
     12020-10-22  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        Non-unified build fixes, late-ish October 2020 edition
     4        https://bugs.webkit.org/show_bug.cgi?id=218095
     5
     6        Unreviewed non-unified build fix.
     7
     8        No new tests needed.
     9
     10        * Modules/speech/SpeechRecognitionResultList.h: Include SpeechRecognitionResult.h
     11        instead of using a forward declaration.
     12        * layout/integration/LayoutIntegrationLineLayout.cpp: Add missing RenderImage.h header.
     13        * page/scrolling/ScrollingTreeLatchingController.h: Add missing wtf/OptionSet.h header
     14        and forward-declare WheelEventProcessingSteps.
     15        * workers/WorkerOrWorkletGlobalScope.cpp: Add missing WorkerOrWorkletThread.h and
     16        WorkerRunLoop.h headers.
     17
    1182020-10-22  Chris Dumez  <cdumez@apple.com>
    219
  • trunk/Source/WebCore/Modules/speech/SpeechRecognitionResultList.h

    r268780 r268895  
    2626#pragma once
    2727
     28#include "SpeechRecognitionResult.h"
    2829#include <wtf/IsoMalloc.h>
    2930#include <wtf/RefCounted.h>
    3031
    3132namespace WebCore {
    32 
    33 class SpeechRecognitionResult;
    3433
    3534class SpeechRecognitionResultList final : public RefCounted<SpeechRecognitionResultList> {
  • trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp

    r268825 r268895  
    4646#include "RenderChildIterator.h"
    4747#include "RenderDescendantIterator.h"
     48#include "RenderImage.h"
    4849#include "RenderLineBreak.h"
    4950#include "RenderView.h"
  • trunk/Source/WebCore/page/scrolling/ScrollingTreeLatchingController.h

    r268544 r268895  
    3232#include <wtf/Markable.h>
    3333#include <wtf/MonotonicTime.h>
     34#include <wtf/OptionSet.h>
    3435#include <wtf/Optional.h>
    3536
     
    3738
    3839class PlatformWheelEvent;
     40enum class WheelEventProcessingSteps : uint8_t;
    3941
    4042class ScrollingTreeLatchingController {
  • trunk/Source/WebCore/workers/WorkerOrWorkletGlobalScope.cpp

    r268868 r268895  
    2929#include "WorkerEventLoop.h"
    3030#include "WorkerOrWorkletScriptController.h"
     31#include "WorkerOrWorkletThread.h"
     32#include "WorkerRunLoop.h"
    3133#include <wtf/IsoMallocInlines.h>
    3234
Note: See TracChangeset for help on using the changeset viewer.