Changeset 258575 in webkit


Ignore:
Timestamp:
Mar 17, 2020 12:49:52 PM (4 years ago)
Author:
achristensen@apple.com
Message:

Fix GTK build.
https://bugs.webkit.org/show_bug.cgi?id=209192

  • UIProcess/API/glib/WebKitUIClient.cpp:

I committed r258574 too fast.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r258574 r258575  
     12020-03-17  Alex Christensen  <achristensen@webkit.org>
     2
     3        Fix GTK build.
     4        https://bugs.webkit.org/show_bug.cgi?id=209192
     5
     6        * UIProcess/API/glib/WebKitUIClient.cpp:
     7        I committed r258574 too fast.
     8
    192020-03-17  Alex Christensen  <achristensen@webkit.org>
    210
  • trunk/Source/WebKit/UIProcess/API/glib/WebKitUIClient.cpp

    r257700 r258575  
    275275
    276276#if PLATFORM(GTK)
    277     void printFrame(WebPageProxy&, WebFrameProxy& frame) final
     277    void printFrame(WebPageProxy&, WebFrameProxy& frame, CompletionHandler<void()>&& completionHandler) final
    278278    {
    279279        webkitWebViewPrintFrame(m_webView, &frame);
     280        completionHandler();
    280281    }
    281282#endif
Note: See TracChangeset for help on using the changeset viewer.