Title: [246608] trunk/Source/WebKit
Revision
246608
Author
[email protected]
Date
2019-06-19 13:34:30 -0700 (Wed, 19 Jun 2019)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (246607 => 246608)


--- trunk/Source/WebKit/ChangeLog	2019-06-19 20:28:22 UTC (rev 246607)
+++ trunk/Source/WebKit/ChangeLog	2019-06-19 20:34:30 UTC (rev 246608)
@@ -1,5 +1,17 @@
 2019-06-19  Sihui Liu  <[email protected]>
 
+        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:
+
+2019-06-19  Sihui Liu  <[email protected]>
+
         Crash at com.apple.WebKit: WebKit::WebsiteDataStore::processPools const
         https://bugs.webkit.org/show_bug.cgi?id=198935
         <rdar://problem/51549308>

Modified: trunk/Source/WebKit/Shared/WebsiteData/WebsiteData.cpp (246607 => 246608)


--- trunk/Source/WebKit/Shared/WebsiteData/WebsiteData.cpp	2019-06-19 20:28:22 UTC (rev 246607)
+++ trunk/Source/WebKit/Shared/WebsiteData/WebsiteData.cpp	2019-06-19 20:34:30 UTC (rev 246608)
@@ -66,7 +66,6 @@
 #if ENABLE(NETSCAPE_PLUGIN_API)
     encoder << hostNamesWithPluginData;
 #endif
-    encoder << originsWithCredentials;
     encoder << hostNamesWithHSTSCache;
 }
 
@@ -80,8 +79,6 @@
     if (!decoder.decode(result.hostNamesWithPluginData))
         return false;
 #endif
-    if (!decoder.decode(result.originsWithCredentials))
-        return false;
     if (!decoder.decode(result.hostNamesWithHSTSCache))
         return false;
     return true;

Modified: trunk/Source/WebKit/Shared/WebsiteData/WebsiteData.h (246607 => 246608)


--- trunk/Source/WebKit/Shared/WebsiteData/WebsiteData.h	2019-06-19 20:28:22 UTC (rev 246607)
+++ trunk/Source/WebKit/Shared/WebsiteData/WebsiteData.h	2019-06-19 20:34:30 UTC (rev 246608)
@@ -58,9 +58,6 @@
 #if ENABLE(NETSCAPE_PLUGIN_API)
     HashSet<String> hostNamesWithPluginData;
 #endif
-
-    HashSet<String> originsWithCredentials;
-
     HashSet<String> hostNamesWithHSTSCache;
 
     void encode(IPC::Encoder&) const;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to