⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 259688 in webkit


Ignore:
Timestamp:
Apr 7, 2020, 5:32:13 PM (6 years ago)
Author:
jh718.park@samsung.com
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):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r259680 r259688  
     12020-04-07  Joonghun Park  <jh718.park@samsung.com>
     2
     3        Move the misplaced statement to the proper place where in
     4        RESOURCE_LOAD_STATISTICS macro.
     5
     6        This patch removes the build warning below since r259275.
     7        warning: unused variable ‘sameSiteStrictEnforcementEnabled’ [-Wunused-variable]
     8
     9        No new tests, no new behavior changes.
     10
     11        * UIProcess/WebProcessPool.cpp:
     12        (WebKit::WebProcessPool::ensureNetworkProcess):
     13
    1142020-04-07  Jiewen Tan  <jiewen_tan@apple.com>
    215
  • trunk/Source/WebKit/UIProcess/WebProcessPool.cpp

    r259673 r259688  
    601601#if ENABLE(RESOURCE_LOAD_STATISTICS)
    602602    WebCore::ThirdPartyCookieBlockingMode thirdPartyCookieBlockingMode = WebCore::ThirdPartyCookieBlockingMode::All;
     603    WebCore::SameSiteStrictEnforcementEnabled sameSiteStrictEnforcementEnabled = WebCore::SameSiteStrictEnforcementEnabled::No;
    603604#endif
    604605    WebCore::FirstPartyWebsiteDataRemovalMode firstPartyWebsiteDataRemovalMode = WebCore::FirstPartyWebsiteDataRemovalMode::AllButCookies;
    605     WebCore::SameSiteStrictEnforcementEnabled sameSiteStrictEnforcementEnabled = WebCore::SameSiteStrictEnforcementEnabled::No;
    606606    WebCore::RegistrableDomain manualPrevalentResource { };
    607607    WEB_PROCESS_POOL_ADDITIONS_2
Note: See TracChangeset for help on using the changeset viewer.