⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 268916 in webkit


Ignore:
Timestamp:
Oct 23, 2020, 1:26:08 AM (6 years ago)
Author:
Carlos Garcia Campos
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 <Alexander Mikhaylenko> on 2020-10-02
Reviewed by Adrian Perez de Castro.

  • UIProcess/API/glib/WebKitProtocolHandler.cpp:

(WebKit::WebKitProtocolHandler::handleGPU):

Location:
releases/WebKitGTK/webkit-2.30/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.30/Source/WebKit/ChangeLog

    r268914 r268916  
     12020-10-02  Alexander Mikhaylenko  <alexm@gnome.org>
     2
     3        [GTK] WPE and backend versions are mixed up in webkit://gpu
     4        https://bugs.webkit.org/show_bug.cgi?id=217210
     5
     6        Reviewed by Adrian Perez de Castro.
     7
     8        * UIProcess/API/glib/WebKitProtocolHandler.cpp:
     9        (WebKit::WebKitProtocolHandler::handleGPU):
     10
    1112020-10-14  Sergio Villar Senin  <svillar@igalia.com>
    212
  • releases/WebKitGTK/webkit-2.30/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp

    r260754 r268916  
    253253            "  <td>%d.%d.%d (using fdo backend %d.%d.%d)</td>"
    254254            " </tbody></tr>",
    255             WPE_FDO_MAJOR_VERSION, WPE_FDO_MINOR_VERSION, WPE_FDO_MICRO_VERSION,
    256             WPE_MAJOR_VERSION, WPE_MINOR_VERSION, WPE_MICRO_VERSION);
     255            WPE_MAJOR_VERSION, WPE_MINOR_VERSION, WPE_MICRO_VERSION,
     256            WPE_FDO_MAJOR_VERSION, WPE_FDO_MINOR_VERSION, WPE_FDO_MICRO_VERSION);
    257257    }
    258258#endif
Note: See TracChangeset for help on using the changeset viewer.