Title: [268916] releases/WebKitGTK/webkit-2.30/Source/WebKit
- Revision
- 268916
- Author
- [email protected]
- Date
- 2020-10-23 01:26:08 -0700 (Fri, 23 Oct 2020)
Log Message
Merge r267875 - [GTK] WPE and backend versions are mixed up in webkit://gpu
https://bugs.webkit.org/show_bug.cgi?id=217210
Patch by Alexander Mikhaylenko <[email protected]> on 2020-10-02
Reviewed by Adrian Perez de Castro.
* UIProcess/API/glib/WebKitProtocolHandler.cpp:
(WebKit::WebKitProtocolHandler::handleGPU):
Modified Paths
Diff
Modified: releases/WebKitGTK/webkit-2.30/Source/WebKit/ChangeLog (268915 => 268916)
--- releases/WebKitGTK/webkit-2.30/Source/WebKit/ChangeLog 2020-10-23 08:26:04 UTC (rev 268915)
+++ releases/WebKitGTK/webkit-2.30/Source/WebKit/ChangeLog 2020-10-23 08:26:08 UTC (rev 268916)
@@ -1,3 +1,13 @@
+2020-10-02 Alexander Mikhaylenko <[email protected]>
+
+ [GTK] WPE and backend versions are mixed up in webkit://gpu
+ https://bugs.webkit.org/show_bug.cgi?id=217210
+
+ Reviewed by Adrian Perez de Castro.
+
+ * UIProcess/API/glib/WebKitProtocolHandler.cpp:
+ (WebKit::WebKitProtocolHandler::handleGPU):
+
2020-10-14 Sergio Villar Senin <[email protected]>
[GLIB] Fix linking error for systems not providing <sys/memfd.h>
Modified: releases/WebKitGTK/webkit-2.30/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp (268915 => 268916)
--- releases/WebKitGTK/webkit-2.30/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp 2020-10-23 08:26:04 UTC (rev 268915)
+++ releases/WebKitGTK/webkit-2.30/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp 2020-10-23 08:26:08 UTC (rev 268916)
@@ -252,8 +252,8 @@
" <td><div class=\"titlename\">WPE version</div></td>"
" <td>%d.%d.%d (using fdo backend %d.%d.%d)</td>"
" </tbody></tr>",
- WPE_FDO_MAJOR_VERSION, WPE_FDO_MINOR_VERSION, WPE_FDO_MICRO_VERSION,
- WPE_MAJOR_VERSION, WPE_MINOR_VERSION, WPE_MICRO_VERSION);
+ WPE_MAJOR_VERSION, WPE_MINOR_VERSION, WPE_MICRO_VERSION,
+ WPE_FDO_MAJOR_VERSION, WPE_FDO_MINOR_VERSION, WPE_FDO_MICRO_VERSION);
}
#endif
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes