WebKit Bugzilla
Attachment 372482 Details for
Bug 199020
: Remove unused originsWithCredentials from WebsiteData
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-199020-20190619111907.patch (text/plain), 2.21 KB, created by
Sihui Liu
on 2019-06-19 11:19:08 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Sihui Liu
Created:
2019-06-19 11:19:08 PDT
Size:
2.21 KB
patch
obsolete
>Subversion Revision: 246594 >diff --git a/Source/WebKit/ChangeLog b/Source/WebKit/ChangeLog >index 564d89968df83943c5f03a2bef2fa87c6814eb5a..e8c3e9e898432bcf622a435fefe8bf47019f48ab 100644 >--- a/Source/WebKit/ChangeLog >+++ b/Source/WebKit/ChangeLog >@@ -1,3 +1,15 @@ >+2019-06-19 Sihui Liu <sihui_liu@apple.com> >+ >+ Remove unused originsWithCredentials from WebsiteData >+ https://bugs.webkit.org/show_bug.cgi?id=199020 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * Shared/WebsiteData/WebsiteData.cpp: >+ (WebKit::WebsiteData::encode const): >+ (WebKit::WebsiteData::decode): >+ * Shared/WebsiteData/WebsiteData.h: >+ > 2019-06-19 Alexander Mikhaylenko <exalm7659@gmail.com> > > [GTK] Page blinks after navigation swipe if it triggered PSON >diff --git a/Source/WebKit/Shared/WebsiteData/WebsiteData.cpp b/Source/WebKit/Shared/WebsiteData/WebsiteData.cpp >index 90c7d754580d86a5f417c1c55a9fa874ba9e277a..0957b86c5f9f9a9ec1f264b90a6c809f138e88fe 100644 >--- a/Source/WebKit/Shared/WebsiteData/WebsiteData.cpp >+++ b/Source/WebKit/Shared/WebsiteData/WebsiteData.cpp >@@ -66,7 +66,6 @@ void WebsiteData::encode(IPC::Encoder& encoder) const > #if ENABLE(NETSCAPE_PLUGIN_API) > encoder << hostNamesWithPluginData; > #endif >- encoder << originsWithCredentials; > encoder << hostNamesWithHSTSCache; > } > >@@ -80,8 +79,6 @@ bool WebsiteData::decode(IPC::Decoder& decoder, WebsiteData& result) > if (!decoder.decode(result.hostNamesWithPluginData)) > return false; > #endif >- if (!decoder.decode(result.originsWithCredentials)) >- return false; > if (!decoder.decode(result.hostNamesWithHSTSCache)) > return false; > return true; >diff --git a/Source/WebKit/Shared/WebsiteData/WebsiteData.h b/Source/WebKit/Shared/WebsiteData/WebsiteData.h >index 7697a0e2a2f46fb3063b5ecdf52d3ae217c2a6e7..28514b98e878d7dd346d783275868fb38cc7d96d 100644 >--- a/Source/WebKit/Shared/WebsiteData/WebsiteData.h >+++ b/Source/WebKit/Shared/WebsiteData/WebsiteData.h >@@ -58,9 +58,6 @@ struct WebsiteData { > #if ENABLE(NETSCAPE_PLUGIN_API) > HashSet<String> hostNamesWithPluginData; > #endif >- >- HashSet<String> originsWithCredentials; >- > HashSet<String> hostNamesWithHSTSCache; > > void encode(IPC::Encoder&) const;
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 199020
: 372482