1 # Copyright (C) 2012-2017 Apple Inc. All rights reserved.
3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions
6 # 1. Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer.
8 # 2. Redistributions in binary form must reproduce the above copyright
9 # notice, this list of conditions and the following disclaimer in the
10 # documentation and/or other materials provided with the distribution.
12 # THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND
13 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
14 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
15 # DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR
16 # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
17 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
18 # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
19 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
20 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
21 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 messages -> NetworkProcess LegacyReceiver {
24 # Initializes the network process.
25 InitializeNetworkProcess(struct WebKit::NetworkProcessCreationParameters processCreationParameters)
27 # Creates a connection for communication with a WebProcess
28 CreateNetworkConnectionToWebProcess()
31 SetIgnoreTLSErrors(bool ignoreTLSErrors)
32 UserPreferredLanguagesChanged(Vector<String> languages)
33 SetNetworkProxySettings(struct WebCore::SoupNetworkProxySettings settings)
36 ClearCachedCredentials()
38 EnsurePrivateBrowsingSession(struct WebKit::WebsiteDataStoreParameters websiteDataStoreParameters)
39 AddWebsiteDataStore(struct WebKit::WebsiteDataStoreParameters websiteDataStoreParameters);
40 DestroySession(PAL::SessionID sessionID)
42 FetchWebsiteData(PAL::SessionID sessionID, OptionSet<WebKit::WebsiteDataType> websiteDataTypes, OptionSet<WebKit::WebsiteDataFetchOption> fetchOptions, uint64_t callbackID)
43 DeleteWebsiteData(PAL::SessionID sessionID, OptionSet<WebKit::WebsiteDataType> websiteDataTypes, std::chrono::system_clock::time_point modifiedSince, uint64_t callbackID)
44 DeleteWebsiteDataForOrigins(PAL::SessionID sessionID, OptionSet<WebKit::WebsiteDataType> websiteDataTypes, Vector<WebCore::SecurityOriginData> origins, Vector<String> cookieHostNames, uint64_t callbackID)
46 DownloadRequest(PAL::SessionID sessionID, WebKit::DownloadID downloadID, WebCore::ResourceRequest request, String suggestedFilename)
47 ResumeDownload(PAL::SessionID sessionID, WebKit::DownloadID downloadID, IPC::DataReference resumeData, String path, WebKit::SandboxExtension::Handle sandboxExtensionHandle)
48 CancelDownload(WebKit::DownloadID downloadID)
50 #if USE(PROTECTION_SPACE_AUTH_CALLBACK)
51 ContinueCanAuthenticateAgainstProtectionSpace(uint64_t loaderID, bool canAuthenticate)
53 #if USE(NETWORK_SESSION)
54 #if USE(PROTECTION_SPACE_AUTH_CALLBACK)
55 ContinueCanAuthenticateAgainstProtectionSpaceDownload(WebKit::DownloadID downloadID, bool canAuthenticate)
57 ContinueWillSendRequest(WebKit::DownloadID downloadID, WebCore::ResourceRequest request)
59 ContinueDecidePendingDownloadDestination(WebKit::DownloadID downloadID, String destination, WebKit::SandboxExtension::Handle sandboxExtensionHandle, bool allowOverwrite)
61 SetProcessSuppressionEnabled(bool flag)
63 SetQOS(int latencyQOS, int throughputQOS)
64 SetCookieStoragePartitioningEnabled(bool enabled)
66 SetAllowsAnySSLCertificateForWebSocket(bool enabled) -> ()
68 SyncAllCookies() -> ()
70 AllowSpecificHTTPSCertificateForHost(WebCore::CertificateInfo certificate, String host)
71 SetCanHandleHTTPSServerTrustEvaluation(bool value)
73 GetNetworkProcessStatistics(uint64_t callbackID)
75 ClearCacheForAllOrigins(uint32_t cachesToClear)
76 SetCacheModel(uint32_t cacheModel);
78 ProcessWillSuspendImminently() -> (bool handled)
80 CancelPrepareToSuspend()
83 DidGrantSandboxExtensionsToStorageProcessForBlobs(uint64_t requestID)
85 #if HAVE(CFNETWORK_STORAGE_PARTITIONING)
86 UpdatePrevalentDomainsWithAndWithoutInteraction(PAL::SessionID sessionID, Vector<String> domainsWithInteraction, Vector<String> domainsWithoutInteraction, bool shouldClearFirst)
87 RemovePrevalentDomains(PAL::SessionID sessionID, Vector<String> domainsWithInteraction);