Title: [224095] trunk/Source/WebKit
Revision
224095
Author
[email protected]
Date
2017-10-27 01:36:58 -0700 (Fri, 27 Oct 2017)

Log Message

REGRESSION (r224077): DeprecatedGlobalSettings::setAVKitEnabled() not protected by HAVE(AVKIT)

Unreviewed build fix.

* WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::updatePreferences): Fix build.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (224094 => 224095)


--- trunk/Source/WebKit/ChangeLog	2017-10-27 08:28:50 UTC (rev 224094)
+++ trunk/Source/WebKit/ChangeLog	2017-10-27 08:36:58 UTC (rev 224095)
@@ -1,3 +1,12 @@
+2017-10-27  David Kilzer  <[email protected]>
+
+        REGRESSION (r224077): DeprecatedGlobalSettings::setAVKitEnabled() not protected by HAVE(AVKIT)
+
+        Unreviewed build fix.
+
+        * WebProcess/WebPage/WebPage.cpp:
+        (WebKit::WebPage::updatePreferences): Fix build.
+
 2017-10-26  Jeremy Jones  <[email protected]>
 
         Implement seek tolerance methods in WebAVPlayerController.

Modified: trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp (224094 => 224095)


--- trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp	2017-10-27 08:28:50 UTC (rev 224094)
+++ trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp	2017-10-27 08:36:58 UTC (rev 224095)
@@ -3093,8 +3093,10 @@
     setForceAlwaysUserScalable(m_forceAlwaysUserScalable || store.getBoolValueForKey(WebPreferencesKey::forceAlwaysUserScalableKey()));
 
     settings.setUseImageDocumentForSubframePDF(true);
+#if HAVE(AVKIT)
     DeprecatedGlobalSettings::setAVKitEnabled(true);
 #endif
+#endif
 
     if (m_drawingArea)
         m_drawingArea->updatePreferences(store);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to