Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

Commit 184d6d1

Browse files
Non-unified build fixes, mid October 2020
https://bugs.webkit.org/show_bug.cgi?id=217721 Reviewed by Yusuke Suzuki. Source/JavaScriptCore: * API/JSContextRef.cpp: * dfg/DFGDoesGCCheck.cpp: * llint/LLIntExceptions.cpp: * llint/LLIntExceptions.h: * llint/LLIntThunks.h: Source/WebCore: * Modules/webgpu/WebGPUShaderModule.h: * html/canvas/EXTTextureCompressionRGTC.cpp: * layout/floats/FloatingContext.cpp: * layout/floats/FloatingContext.h: * layout/inlineformatting/InlineFormattingContextGeometry.cpp: * layout/inlineformatting/InlineLine.cpp: * platform/graphics/gpu/GPUDevice.cpp: * rendering/RenderReplaced.cpp: * workers/WorkerRunLoop.cpp: Source/WebKit: * NetworkProcess/Downloads/DownloadManager.cpp: * UIProcess/Downloads/DownloadProxyMap.cpp: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@268485 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 5091529 commit 184d6d1

File tree

19 files changed

+57
-4
lines changed

19 files changed

+57
-4
lines changed

Source/JavaScriptCore/API/JSContextRef.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include "JSAPIWrapperObject.h"
3535
#include "JSCallbackObject.h"
3636
#include "JSClassRef.h"
37-
#include "JSObject.h"
37+
#include "JSObjectInlines.h"
3838
#include "StackVisitor.h"
3939
#include "StrongInlines.h"
4040
#include "StructureInlines.h"

Source/JavaScriptCore/ChangeLog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2020-10-14 Don Olmstead <[email protected]>
2+
3+
Non-unified build fixes, mid October 2020
4+
https://bugs.webkit.org/show_bug.cgi?id=217721
5+
6+
Reviewed by Yusuke Suzuki.
7+
8+
* API/JSContextRef.cpp:
9+
* dfg/DFGDoesGCCheck.cpp:
10+
* llint/LLIntExceptions.cpp:
11+
* llint/LLIntExceptions.h:
12+
* llint/LLIntThunks.h:
13+
114
2020-10-13 Saam Barati <[email protected]>
215

316
JSObject::getPropertyNames should have a stack overflow check

Source/JavaScriptCore/dfg/DFGDoesGCCheck.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
#include "DFGGraph.h"
3232
#include "DFGNodeType.h"
3333
#include "Heap.h"
34+
#include "JSCJSValueInlines.h"
3435
#include "Options.h"
3536
#include "VMInspector.h"
3637
#include <wtf/DataLog.h>

Source/JavaScriptCore/llint/LLIntExceptions.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
#include "LLIntCommon.h"
3030
#include "LLIntData.h"
31+
#include "LLIntThunks.h"
3132

3233
#if LLINT_TRACING
3334
#include "CatchScope.h"

Source/JavaScriptCore/llint/LLIntExceptions.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,16 @@
2525

2626
#pragma once
2727

28+
#include "JSCPtrTag.h"
29+
#include "OpcodeSize.h"
2830
#include <wtf/StdLibExtras.h>
2931

3032
namespace JSC {
3133

3234
class CallFrame;
3335
class VM;
3436
struct Instruction;
37+
template<PtrTag> class MacroAssemblerCodeRef;
3538

3639
namespace LLInt {
3740

Source/JavaScriptCore/llint/LLIntThunks.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#pragma once
2727

2828
#include "MacroAssemblerCodeRef.h"
29+
#include "OpcodeSize.h"
2930
#include "VM.h"
3031
#include <wtf/Scope.h>
3132

Source/WebCore/ChangeLog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
2020-10-14 Don Olmstead <[email protected]>
2+
3+
Non-unified build fixes, mid October 2020
4+
https://bugs.webkit.org/show_bug.cgi?id=217721
5+
6+
Reviewed by Yusuke Suzuki.
7+
8+
* Modules/webgpu/WebGPUShaderModule.h:
9+
* html/canvas/EXTTextureCompressionRGTC.cpp:
10+
* layout/floats/FloatingContext.cpp:
11+
* layout/floats/FloatingContext.h:
12+
* layout/inlineformatting/InlineFormattingContextGeometry.cpp:
13+
* layout/inlineformatting/InlineLine.cpp:
14+
* platform/graphics/gpu/GPUDevice.cpp:
15+
* rendering/RenderReplaced.cpp:
16+
* workers/WorkerRunLoop.cpp:
17+
118
2020-10-14 Megan Gardner <[email protected]>
219

320
Refactor HighlightData

Source/WebCore/Modules/webgpu/WebGPUShaderModule.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
#if ENABLE(WEBGPU)
2929

3030
#include "GPUShaderModule.h"
31-
#include <wtf/Forward.h>
3231
#include <wtf/RefCounted.h>
32+
#include <wtf/text/WTFString.h>
3333

3434
namespace WebCore {
3535

Source/WebCore/html/canvas/EXTTextureCompressionRGTC.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#if ENABLE(WEBGL)
2929
#include "EXTTextureCompressionRGTC.h"
30+
#include "ExtensionsGL.h"
3031

3132
#include <wtf/IsoMallocInlines.h>
3233

Source/WebCore/layout/floats/FloatingContext.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030

3131
#include "BlockFormattingState.h"
3232
#include "FloatAvoider.h"
33-
#include "FormattingContext.h"
3433
#include "LayoutBox.h"
3534
#include "LayoutBoxGeometry.h"
3635
#include "LayoutContainerBox.h"

0 commit comments

Comments
 (0)