Title: [233094] trunk/Source/WebKit
- Revision
- 233094
- Author
- [email protected]
- Date
- 2018-06-22 13:21:15 -0700 (Fri, 22 Jun 2018)
Log Message
Fix the build after r233089
* UIProcess/API/Cocoa/WKPreferences.mm:
(-[WKPreferences _setColorFilterEnabled:]):
(-[WKPreferences _colorFilterEnabled]):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (233093 => 233094)
--- trunk/Source/WebKit/ChangeLog 2018-06-22 20:16:38 UTC (rev 233093)
+++ trunk/Source/WebKit/ChangeLog 2018-06-22 20:21:15 UTC (rev 233094)
@@ -1,3 +1,11 @@
+2018-06-22 Timothy Horton <[email protected]>
+
+ Fix the build after r233089
+
+ * UIProcess/API/Cocoa/WKPreferences.mm:
+ (-[WKPreferences _setColorFilterEnabled:]):
+ (-[WKPreferences _colorFilterEnabled]):
+
2018-06-22 Chris Dumez <[email protected]>
Crash under WebResourceLoadStatisticsStore::mergeStatistics(WTF::Vector<WebCore::ResourceLoadStatistics, 0ul, WTF::CrashOnOverflow, 16ul>&&)
Modified: trunk/Source/WebKit/UIProcess/API/Cocoa/WKPreferences.mm (233093 => 233094)
--- trunk/Source/WebKit/UIProcess/API/Cocoa/WKPreferences.mm 2018-06-22 20:16:38 UTC (rev 233093)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/WKPreferences.mm 2018-06-22 20:21:15 UTC (rev 233094)
@@ -751,6 +751,16 @@
return _preferences->isAVFoundationEnabled();
}
+- (void)_setColorFilterEnabled:(BOOL)enabled
+{
+ _preferences->setColorFilterEnabled(enabled);
+}
+
+- (BOOL)_colorFilterEnabled
+{
+ return _preferences->colorFilterEnabled();
+}
+
#if PLATFORM(MAC)
- (void)_setJavaEnabledForLocalFiles:(BOOL)enabled
{
@@ -862,16 +872,6 @@
return _preferences->pageCacheSupportsPlugins();
}
-- (void)_setColorFilterEnabled:(BOOL)enabled
-{
- _preferences->setColorFilterEnabled(enabled);
-}
-
-- (BOOL)_colorFilterEnabled
-{
- return _preferences->colorFilterEnabled();
-}
-
- (void)_setShouldPrintBackgrounds:(BOOL)enabled
{
_preferences->setShouldPrintBackgrounds(enabled);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes