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

Changeset 267875 in webkit


Ignore:
Timestamp:
Oct 2, 2020, 6:35:46 AM (6 years ago)
Author:
commit-queue@webkit.org
Message:

[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:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r267874 r267875  
     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-02  Commit Queue  <commit-queue@webkit.org>
    212
  • trunk/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp

    r260754 r267875  
    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.