Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[GTK][WPE] Fix some build errors in service workers code
https://bugs.webkit.org/show_bug.cgi?id=182966 Reviewed by Žan Doberšek. Source/WebCore: No new tests: no change in behavior. * workers/service/ServiceWorkerProvider.h: add missing forward declaration. Source/WebKit: * CMakeLists.txt: add missing files. * StorageProcess/ServiceWorker/WebSWServerConnection.cpp: add missing includes. * UIProcess/ServiceWorkerProcessProxy.cpp: use #include rather than #import in C++; add missing ifdef. * UIProcess/ServiceWorkerProcessProxy.h: add missing ifdef. * WebProcess/Storage/WebSWClientConnection.cpp: add missing includes. * WebProcess/Storage/WebSWContextManagerConnection.cpp: add missing includes. (WebKit::WebSWContextManagerConnection::WebSWContextManagerConnection): call the function that exists outside cocoa. Canonical link: https://commits.webkit.org/198784@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@228915 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
49 additions
and 1 deletion.
- +11 −0 Source/WebCore/ChangeLog
- +1 −0 Source/WebCore/workers/service/ServiceWorkerProvider.h
- +3 −0 Source/WebKit/CMakeLists.txt
- +16 −0 Source/WebKit/ChangeLog
- +2 −0 Source/WebKit/StorageProcess/ServiceWorker/WebSWServerConnection.cpp
- +5 −1 Source/WebKit/UIProcess/ServiceWorkerProcessProxy.cpp
- +4 −0 Source/WebKit/UIProcess/ServiceWorkerProcessProxy.h
- +1 −0 Source/WebKit/WebProcess/Storage/WebSWClientConnection.cpp
- +6 −0 Source/WebKit/WebProcess/Storage/WebSWContextManagerConnection.cpp
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
@@ -34,6 +34,7 @@ class SessionID; | ||
namespace WebCore { | ||
|
||
class SWClientConnection; | ||
class SecurityOrigin; | ||
class ServiceWorkerJob; | ||
|
||
class WEBCORE_EXPORT ServiceWorkerProvider { | ||
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