Title: [218650] branches/safari-603-branch/Source/WebKit/win
- Revision
- 218650
- Author
- [email protected]
- Date
- 2017-06-21 14:20:11 -0700 (Wed, 21 Jun 2017)
Log Message
rdar://problem/32869380
Modified Paths
Diff
Modified: branches/safari-603-branch/Source/WebKit/win/ChangeLog (218649 => 218650)
--- branches/safari-603-branch/Source/WebKit/win/ChangeLog 2017-06-21 21:19:05 UTC (rev 218649)
+++ branches/safari-603-branch/Source/WebKit/win/ChangeLog 2017-06-21 21:20:11 UTC (rev 218650)
@@ -1,3 +1,21 @@
+2017-06-21 Jason Marcell <[email protected]>
+
+ rdar://problem/32869380
+
+ 2017-06-21 Per Arne Vollan <[email protected]>
+
+ [Win] Safari-603.3.6 tag fails to build.
+ https://bugs.webkit.org/show_bug.cgi?id=173641
+
+ Reviewed by Brent Fulgham.
+
+ The methods WebPreferences::allowsPageCacheWithWindowOpener and
+ WebPreferences::setAllowsPageCacheWithWindowOpener have been reintroduced,
+ but the declarations of the methods are missing.
+
+ * Interfaces/IWebPreferencesPrivate.idl:
+ * WebPreferences.h:
+
2017-06-18 Babak Shafiei <[email protected]>
Roll out r212173.
Modified: branches/safari-603-branch/Source/WebKit/win/Interfaces/IWebPreferencesPrivate.idl (218649 => 218650)
--- branches/safari-603-branch/Source/WebKit/win/Interfaces/IWebPreferencesPrivate.idl 2017-06-21 21:19:05 UTC (rev 218649)
+++ branches/safari-603-branch/Source/WebKit/win/Interfaces/IWebPreferencesPrivate.idl 2017-06-21 21:20:11 UTC (rev 218650)
@@ -191,4 +191,7 @@
interface IWebPreferencesPrivate4 : IWebPreferencesPrivate3
{
HRESULT setApplicationId([in] BSTR applicationId);
+
+ HRESULT allowsPageCacheWithWindowOpener([out, retval] BOOL* usesPageCache);
+ HRESULT setAllowsPageCacheWithWindowOpener([in] BOOL usesPageCache);
}
Modified: branches/safari-603-branch/Source/WebKit/win/WebPreferences.h (218649 => 218650)
--- branches/safari-603-branch/Source/WebKit/win/WebPreferences.h 2017-06-21 21:19:05 UTC (rev 218649)
+++ branches/safari-603-branch/Source/WebKit/win/WebPreferences.h 2017-06-21 21:20:11 UTC (rev 218650)
@@ -246,6 +246,9 @@
// IWebPreferencesPrivate4
virtual HRESULT STDMETHODCALLTYPE setApplicationId(BSTR);
+ virtual HRESULT STDMETHODCALLTYPE allowsPageCacheWithWindowOpener(_Out_ BOOL*);
+ virtual HRESULT STDMETHODCALLTYPE setAllowsPageCacheWithWindowOpener(BOOL);
+
// WebPreferences
// This method accesses a different preference key than developerExtrasEnabled.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes