Changeset 268895 in webkit
- Timestamp:
- Oct 22, 2020, 3:06:51 PM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 5 edited
-
ChangeLog (modified) (1 diff)
-
Modules/speech/SpeechRecognitionResultList.h (modified) (1 diff)
-
layout/integration/LayoutIntegrationLineLayout.cpp (modified) (1 diff)
-
page/scrolling/ScrollingTreeLatchingController.h (modified) (2 diffs)
-
workers/WorkerOrWorkletGlobalScope.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r268893 r268895 1 2020-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 1 18 2020-10-22 Chris Dumez <cdumez@apple.com> 2 19 -
trunk/Source/WebCore/Modules/speech/SpeechRecognitionResultList.h
r268780 r268895 26 26 #pragma once 27 27 28 #include "SpeechRecognitionResult.h" 28 29 #include <wtf/IsoMalloc.h> 29 30 #include <wtf/RefCounted.h> 30 31 31 32 namespace WebCore { 32 33 class SpeechRecognitionResult;34 33 35 34 class SpeechRecognitionResultList final : public RefCounted<SpeechRecognitionResultList> { -
trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp
r268825 r268895 46 46 #include "RenderChildIterator.h" 47 47 #include "RenderDescendantIterator.h" 48 #include "RenderImage.h" 48 49 #include "RenderLineBreak.h" 49 50 #include "RenderView.h" -
trunk/Source/WebCore/page/scrolling/ScrollingTreeLatchingController.h
r268544 r268895 32 32 #include <wtf/Markable.h> 33 33 #include <wtf/MonotonicTime.h> 34 #include <wtf/OptionSet.h> 34 35 #include <wtf/Optional.h> 35 36 … … 37 38 38 39 class PlatformWheelEvent; 40 enum class WheelEventProcessingSteps : uint8_t; 39 41 40 42 class ScrollingTreeLatchingController { -
trunk/Source/WebCore/workers/WorkerOrWorkletGlobalScope.cpp
r268868 r268895 29 29 #include "WorkerEventLoop.h" 30 30 #include "WorkerOrWorkletScriptController.h" 31 #include "WorkerOrWorkletThread.h" 32 #include "WorkerRunLoop.h" 31 33 #include <wtf/IsoMallocInlines.h> 32 34
Note:
See TracChangeset
for help on using the changeset viewer.