Changeset 246608 in webkit


Ignore:
Timestamp:
Jun 19, 2019 1:34:30 PM (5 years ago)
Author:
sihui_liu@apple.com
Message:

Remove unused originsWithCredentials from WebsiteData
https://bugs.webkit.org/show_bug.cgi?id=199020

Reviewed by Geoffrey Garen.

  • Shared/WebsiteData/WebsiteData.cpp:

(WebKit::WebsiteData::encode const):
(WebKit::WebsiteData::decode):

  • Shared/WebsiteData/WebsiteData.h:
Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r246606 r246608  
     12019-06-19  Sihui Liu  <sihui_liu@apple.com>
     2
     3        Remove unused originsWithCredentials from WebsiteData
     4        https://bugs.webkit.org/show_bug.cgi?id=199020
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        * Shared/WebsiteData/WebsiteData.cpp:
     9        (WebKit::WebsiteData::encode const):
     10        (WebKit::WebsiteData::decode):
     11        * Shared/WebsiteData/WebsiteData.h:
     12
    1132019-06-19  Sihui Liu  <sihui_liu@apple.com>
    214
  • trunk/Source/WebKit/Shared/WebsiteData/WebsiteData.cpp

    r245540 r246608  
    6767    encoder << hostNamesWithPluginData;
    6868#endif
    69     encoder << originsWithCredentials;
    7069    encoder << hostNamesWithHSTSCache;
    7170}
     
    8180        return false;
    8281#endif
    83     if (!decoder.decode(result.originsWithCredentials))
    84         return false;
    8582    if (!decoder.decode(result.hostNamesWithHSTSCache))
    8683        return false;
  • trunk/Source/WebKit/Shared/WebsiteData/WebsiteData.h

    r243632 r246608  
    5959    HashSet<String> hostNamesWithPluginData;
    6060#endif
    61 
    62     HashSet<String> originsWithCredentials;
    63 
    6461    HashSet<String> hostNamesWithHSTSCache;
    6562
Note: See TracChangeset for help on using the changeset viewer.