Changeset 246167 in webkit


Ignore:
Timestamp:
Jun 6, 2019 1:15:50 PM (5 years ago)
Author:
commit-queue@webkit.org
Message:

Remove duplicated websiteDataStoreParameters code from WebsitePoliciesData::applyToDocumentLoader()
https://bugs.webkit.org/show_bug.cgi?id=198608

Patch by Antoine Quint <Antoine Quint> on 2019-06-06
Reviewed by Wenson Hsieh.

Due to a rebasing error, r244218 re-introduced code that was removed in r244197. This patch removes this code for good.

  • Shared/WebsitePoliciesData.cpp:

(WebKit::WebsitePoliciesData::applyToDocumentLoader):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r246165 r246167  
     12019-06-06  Antoine Quint  <graouts@apple.com>
     2
     3        Remove duplicated websiteDataStoreParameters code from WebsitePoliciesData::applyToDocumentLoader()
     4        https://bugs.webkit.org/show_bug.cgi?id=198608
     5
     6        Reviewed by Wenson Hsieh.
     7
     8        Due to a rebasing error, r244218 re-introduced code that was removed in r244197. This patch removes this code for good.
     9
     10        * Shared/WebsitePoliciesData.cpp:
     11        (WebKit::WebsitePoliciesData::applyToDocumentLoader):
     12
    1132019-06-06  Antoine Quint  <graouts@apple.com>
    214
  • trunk/Source/WebKit/Shared/WebsitePoliciesData.cpp

    r245483 r246167  
    257257    }
    258258
    259     if (websitePolicies.websiteDataStoreParameters) {
    260         if (auto* frame = documentLoader.frame()) {
    261             if (auto* page = frame->page())
    262                 page->setSessionID(websitePolicies.websiteDataStoreParameters->networkSessionParameters.sessionID);
    263         }
    264     }
    265 
    266259    auto* frame = documentLoader.frame();
    267260    if (!frame)
Note: See TracChangeset for help on using the changeset viewer.