Title: [259688] trunk/Source/WebKit
- Revision
- 259688
- Author
- [email protected]
- Date
- 2020-04-07 17:32:13 -0700 (Tue, 07 Apr 2020)
Log Message
Move the misplaced statement to the proper place where in
RESOURCE_LOAD_STATISTICS macro.
This patch removes the build warning below since r259275.
warning: unused variable ‘sameSiteStrictEnforcementEnabled’ [-Wunused-variable]
No new tests, no new behavior changes.
* UIProcess/WebProcessPool.cpp:
(WebKit::WebProcessPool::ensureNetworkProcess):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (259687 => 259688)
--- trunk/Source/WebKit/ChangeLog 2020-04-07 23:43:29 UTC (rev 259687)
+++ trunk/Source/WebKit/ChangeLog 2020-04-08 00:32:13 UTC (rev 259688)
@@ -1,3 +1,16 @@
+2020-04-07 Joonghun Park <[email protected]>
+
+ Move the misplaced statement to the proper place where in
+ RESOURCE_LOAD_STATISTICS macro.
+
+ This patch removes the build warning below since r259275.
+ warning: unused variable ‘sameSiteStrictEnforcementEnabled’ [-Wunused-variable]
+
+ No new tests, no new behavior changes.
+
+ * UIProcess/WebProcessPool.cpp:
+ (WebKit::WebProcessPool::ensureNetworkProcess):
+
2020-04-07 Jiewen Tan <[email protected]>
[WebAuthn] Cancel WebAuthn requests when users cancel LocalAuthentication prompts
Modified: trunk/Source/WebKit/UIProcess/WebProcessPool.cpp (259687 => 259688)
--- trunk/Source/WebKit/UIProcess/WebProcessPool.cpp 2020-04-07 23:43:29 UTC (rev 259687)
+++ trunk/Source/WebKit/UIProcess/WebProcessPool.cpp 2020-04-08 00:32:13 UTC (rev 259688)
@@ -600,9 +600,9 @@
bool enableResourceLoadStatisticsDebugMode = false;
#if ENABLE(RESOURCE_LOAD_STATISTICS)
WebCore::ThirdPartyCookieBlockingMode thirdPartyCookieBlockingMode = WebCore::ThirdPartyCookieBlockingMode::All;
+ WebCore::SameSiteStrictEnforcementEnabled sameSiteStrictEnforcementEnabled = WebCore::SameSiteStrictEnforcementEnabled::No;
#endif
WebCore::FirstPartyWebsiteDataRemovalMode firstPartyWebsiteDataRemovalMode = WebCore::FirstPartyWebsiteDataRemovalMode::AllButCookies;
- WebCore::SameSiteStrictEnforcementEnabled sameSiteStrictEnforcementEnabled = WebCore::SameSiteStrictEnforcementEnabled::No;
WebCore::RegistrableDomain manualPrevalentResource { };
WEB_PROCESS_POOL_ADDITIONS_2
if (withWebsiteDataStore) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes