Changeset 254511 in webkit


Ignore:
Timestamp:
Jan 14, 2020 8:22:00 AM (4 years ago)
Author:
commit-queue@webkit.org
Message:

[GLib] Remove unused private variable
https://bugs.webkit.org/show_bug.cgi?id=206232

Patch by Víctor Manuel Jáquez Leal <vjaquez@igalia.com> on 2020-01-14
Reviewed by Carlos Garcia Campos.

Remove m_context which is not used.

No functional changes.

  • UIProcess/API/glib/WebKitProtocolHandler.cpp:

(WebKit::WebKitProtocolHandler::WebKitProtocolHandler):

  • UIProcess/API/glib/WebKitProtocolHandler.h:
Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r254505 r254511  
     12020-01-14  Víctor Manuel Jáquez Leal  <vjaquez@igalia.com>
     2
     3        [GLib] Remove unused private variable
     4        https://bugs.webkit.org/show_bug.cgi?id=206232
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        Remove m_context which is not used.
     9
     10        No functional changes.
     11
     12        * UIProcess/API/glib/WebKitProtocolHandler.cpp:
     13        (WebKit::WebKitProtocolHandler::WebKitProtocolHandler):
     14        * UIProcess/API/glib/WebKitProtocolHandler.h:
     15
    1162020-01-14  youenn fablet  <youenn@apple.com>
    217
  • trunk/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.cpp

    r253150 r254511  
    7676
    7777WebKitProtocolHandler::WebKitProtocolHandler(WebKitWebContext* context)
    78     : m_context(context)
    7978{
    8079    webkit_web_context_register_uri_scheme(context, "webkit", [](WebKitURISchemeRequest* request, gpointer userData) {
  • trunk/Source/WebKit/UIProcess/API/glib/WebKitProtocolHandler.h

    r250517 r254511  
    3434    void handleRequest(WebKitURISchemeRequest*);
    3535    void handleGPU(WebKitURISchemeRequest*);
    36 
    37     WebKitWebContext* m_context { nullptr };
    3836};
    3937
Note: See TracChangeset for help on using the changeset viewer.