Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[GTK][WPE] Fix non-unified builds after r251326
https://bugs.webkit.org/show_bug.cgi?id=203244 Reviewed by Youenn Fablet. Source/JavaScriptCore: * ftl/FTLOSREntry.h: Add missing forward declaration of JSC::VM. * inspector/ScriptCallStackFactory.h: Add missing forward declaration of JSC::JSGlobalObject. * llint/LLIntExceptions.h: Add missing forward declaration of JSC::VM. * runtime/ExceptionFuzz.h: Add missing forward declaration of JSC::JSGlobalObject. * runtime/JSDateMath.h: Ditto. * runtime/JSStringJoiner.h: Add missing inclusion of the JSGlobalObject.h header. * runtime/Watchdog.h: Add missing forward declaration of JSC::JSGlobalObject. * wasm/WasmOperations.h: Add missing forward declaration of JSC::JSWebAssemblyInstance. Source/WebCore: No new tests needed. * Modules/async-clipboard/Clipboard.cpp: Switch inclusion of Blob.h to JSBlob.h, in order to have a toJS() conversion for Blob defined. Remove the unneeded JSPromise.h header inclusion. * Modules/indexeddb/IDBFactory.h: Add missing forward declaration of JSC::JSGlobalObject. * bindings/js/JSDOMBindingSecurity.h: Ditto. * bindings/js/ScriptState.h: Ditto. * dom/Node.cpp: Add missing inclusion of JavaScriptCore/HeapInlines.h * page/RemoteDOMWindow.h: Add missing forward declaration of JSC::JSGlobalObject. * platform/graphics/HEVCUtilities.cpp: Add missing inclusion of the wtf/text/StringHash.h header, needed to use String as key for a HashMap. Source/WebKit: * Shared/UserData.cpp: Add missing inclusion of WebCoreArgumentCoders.h * UIProcess/Automation/SimulatedInputDispatcher.cpp: Add missing inclusion of wtf/Variant.h * UIProcess/ProvisionalPageProxy.h: Add missing inclusion of WebCore/ResourceRequest.h * UIProcess/WebTextChecker.cpp: Add missing inclusion of WebPageProxy.h * WebProcess/Databases/WebDatabaseProvider.cpp: Add missing inclusion of WebIDBConnectionToServer.h Canonical link: https://commits.webkit.org/216673@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@251436 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
23 changed files
with
70 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ namespace JSC { | |
|
||
class CallFrame; | ||
class CodeBlock; | ||
class VM; | ||
|
||
namespace FTL { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ | |
namespace JSC { | ||
class CallFrame; | ||
class Exception; | ||
class JSGlobalObject; | ||
class JSValue; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,7 @@ | |
namespace JSC { | ||
|
||
class CallFrame; | ||
class VM; | ||
struct Instruction; | ||
|
||
namespace LLInt { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ | |
|
||
#include "ExceptionHelpers.h" | ||
#include "JSCJSValue.h" | ||
#include "JSGlobalObject.h" | ||
|
||
namespace JSC { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,7 @@ | |
|
||
namespace JSC { | ||
class CallFrame; | ||
class JSGlobalObject; | ||
class JSValue; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,7 @@ | |
|
||
namespace JSC { | ||
class CallFrame; | ||
class JSGlobalObject; | ||
} | ||
|
||
namespace WebCore { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ | |
|
||
namespace JSC { | ||
class CallFrame; | ||
class JSGlobalObject; | ||
} | ||
|
||
namespace WebCore { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters