Skip to content

Commit e40d885

Browse files
committed
REGRESSION(299937@main): Fix GTK3 builds
https://bugs.webkit.org/show_bug.cgi?id=298385 Unreviewed build fix for GTK3 build. > Source/WebKit/UIProcess/API/glib/WebKitNetworkSession.cpp:21:10: fatal error: WebKitNetworkSession.h: No such file or directory > 21 | #include "WebKitNetworkSession.h" > | ^~~~~~~~~~~~~~~~~~~~~~~~ Moved the #if before #include "WebKitNetworkSession.h". * Source/WebKit/UIProcess/API/glib/WebKitNetworkSession.cpp: Canonical link: https://commits.webkit.org/299938@main
1 parent 05a5475 commit e40d885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/WebKit/UIProcess/API/glib/WebKitNetworkSession.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
*/
1919

2020
#include "config.h"
21-
#include "WebKitNetworkSession.h"
2221

2322
#if ENABLE(2022_GLIB_API)
23+
#include "WebKitNetworkSession.h"
2424

2525
#include "APIDownloadClient.h"
2626
#include "FrameInfoData.h"

0 commit comments

Comments
 (0)