wpe: Remove code targeting WebKit < 2.24
authorThibault Saunier <tsaunier@igalia.com>
Thu, 15 Apr 2021 18:06:59 +0000 (14:06 -0400)
committerThibault Saunier <tsaunier@igalia.com>
Thu, 15 Apr 2021 18:06:59 +0000 (14:06 -0400)
We already depend on wk >= 2.24

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2165>

ext/wpe/WPEThreadedView.cpp

index b2c81da..051d103 100644 (file)
@@ -509,14 +509,10 @@ void WPEView::loadData(GBytes* bytes)
 
 void WPEView::setDrawBackground(gboolean drawsBackground)
 {
-#if WEBKIT_CHECK_VERSION(2, 24, 0)
     GST_DEBUG("%s background rendering", drawsBackground ? "Enabling" : "Disabling");
     WebKitColor color;
     webkit_color_parse(&color, drawsBackground ? "white" : "transparent");
     webkit_web_view_set_background_color(webkit.view, &color);
-#else
-    GST_FIXME("webkit_web_view_set_background_color is not implemented in WPE %u.%u. Please upgrade to 2.24", webkit_get_major_version(), webkit_get_minor_version());
-#endif
 }
 
 void WPEView::releaseImage(gpointer imagePointer)