Title: [240306] trunk/Source/WebKit
- Revision
- 240306
- Author
- [email protected]
- Date
- 2019-01-22 16:19:13 -0800 (Tue, 22 Jan 2019)
Log Message
Unreviewed, further build fixes after r240292
https://bugs.webkit.org/show_bug.cgi?id=193580
<rdar://problem/47457742>
Oops.
* NetworkProcess/NetworkProcess.cpp:
(WebKit::NetworkProcess::defaultStorageSession const):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (240305 => 240306)
--- trunk/Source/WebKit/ChangeLog 2019-01-23 00:13:41 UTC (rev 240305)
+++ trunk/Source/WebKit/ChangeLog 2019-01-23 00:19:13 UTC (rev 240306)
@@ -4,6 +4,17 @@
https://bugs.webkit.org/show_bug.cgi?id=193580
<rdar://problem/47457742>
+ Oops.
+
+ * NetworkProcess/NetworkProcess.cpp:
+ (WebKit::NetworkProcess::defaultStorageSession const):
+
+2019-01-22 Michael Catanzaro <[email protected]>
+
+ Unreviewed, further build fixes after r240292
+ https://bugs.webkit.org/show_bug.cgi?id=193580
+ <rdar://problem/47457742>
+
This builds for libsoup. Doesn't work, but at least builds.
Also, speculative fixes for curl.
Modified: trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp (240305 => 240306)
--- trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp 2019-01-23 00:13:41 UTC (rev 240305)
+++ trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp 2019-01-23 00:19:13 UTC (rev 240306)
@@ -538,9 +538,9 @@
#if PLATFORM(COCOA)
m_defaultNetworkStorageSession = std::make_unique<WebCore::NetworkStorageSession>(PAL::SessionID::defaultSessionID());
-#elif PLATFORM(SOUP)
+#elif USE(SOUP)
m_defaultNetworkStorageSession = std::make_unique<WebCore::NetworkStorageSession>(PAL::SessionID::defaultSessionID(), std::make_unique<SoupNetworkSession>(PAL::SessionID::defaultSessionID()));
-#elif PLATFORM(CURL)
+#elif USE(CURL)
m_defaultNetworkStorageSession = std::make_unique<WebCore::NetworkStorageSession>(PAL::SessionID::defaultSessionID(), CurlContext::singleton());
#else
#error Implement me
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes