Title: [264189] trunk/Source/WebKit
- Revision
- 264189
- Author
- lmo...@igalia.com
- Date
- 2020-07-09 13:00:45 -0700 (Thu, 09 Jul 2020)
Log Message
[GTK] Remaining build fix after r264179
Like last revision, avoid "missing binary operator before(" errors
when WPE libraries are not installed.
* UIProcess/gtk/AcceleratedBackingStoreWayland.cpp:
(WebKit::AcceleratedBackingStoreWayland::paint):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (264188 => 264189)
--- trunk/Source/WebKit/ChangeLog 2020-07-09 19:49:58 UTC (rev 264188)
+++ trunk/Source/WebKit/ChangeLog 2020-07-09 20:00:45 UTC (rev 264189)
@@ -1,3 +1,13 @@
+2020-07-09 Lauro Moura <lmo...@igalia.com>
+
+ [GTK] Remaining build fix after r264179
+
+ Like last revision, avoid "missing binary operator before(" errors
+ when WPE libraries are not installed.
+
+ * UIProcess/gtk/AcceleratedBackingStoreWayland.cpp:
+ (WebKit::AcceleratedBackingStoreWayland::paint):
+
2020-07-09 Wenson Hsieh <wenson_hs...@apple.com>
REGRESSION (r259840): Pressing Esc or ⌘+"." does not dismiss time picker on iOS
Modified: trunk/Source/WebKit/UIProcess/gtk/AcceleratedBackingStoreWayland.cpp (264188 => 264189)
--- trunk/Source/WebKit/UIProcess/gtk/AcceleratedBackingStoreWayland.cpp 2020-07-09 19:49:58 UTC (rev 264188)
+++ trunk/Source/WebKit/UIProcess/gtk/AcceleratedBackingStoreWayland.cpp 2020-07-09 20:00:45 UTC (rev 264189)
@@ -581,7 +581,8 @@
break;
}
case WaylandImpl::SHM:
-#if USE(WPE_RENDERER) && WPE_FDO_CHECK_VERSION(1, 7, 0)
+#if USE(WPE_RENDERER)
+#if WPE_FDO_CHECK_VERSION(1, 7, 0)
if (m_shm.pendingFrame) {
wpe_view_backend_exportable_fdo_dispatch_frame_complete(m_exportable);
m_shm.pendingFrame = false;
@@ -594,7 +595,10 @@
break;
#else
FALLTHROUGH;
-#endif
+#endif // WPE_FDO_CHECK_VERSION
+#else
+ FALLTHROUGH;
+#endif // USE(WPE_RENDERER)
case WaylandImpl::Unsupported:
RELEASE_ASSERT_NOT_REACHED();
}
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes