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

Changeset 246299 in webkit


Ignore:
Timestamp:
Jun 10, 2019, 5:38:48 PM (7 years ago)
Author:
Basuke Suzuki
Message:

[WinCairo] Remove build warning from RemoteInspector.
https://bugs.webkit.org/show_bug.cgi?id=198724

Reviewed by Joseph Pecoraro.

In RemoteInspectorConnectionClient.h, an interface was defined with empty implementation.
This method is to be overwritten by sub classes so that parameter name is important
so they are commented out rather than just removing from the definition.

  • inspector/remote/RemoteInspector.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r246285 r246299  
     12019-06-10  Basuke Suzuki  <Basuke.Suzuki@sony.com>
     2
     3        [WinCairo] Remove build warning from RemoteInspector.
     4        https://bugs.webkit.org/show_bug.cgi?id=198724
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        In `RemoteInspectorConnectionClient.h`, an interface was defined with empty implementation.
     9        This method is to be overwritten by sub classes so that parameter name is important
     10        so they are commented out rather than just removing from the definition.
     11
     12        * inspector/remote/RemoteInspector.h:
     13
    1142019-06-10  Sam Weinig  <weinig@apple.com>
    215
  • trunk/Source/JavaScriptCore/inspector/remote/socket/RemoteInspectorConnectionClient.h

    r245536 r246299  
    3838public:
    3939    void didReceiveWebInspectorEvent(ConnectionID, Vector<uint8_t>&&);
    40     virtual void didAccept(ConnectionID acceptedID, ConnectionID listenerID, Socket::Domain) { }
     40    virtual void didAccept(ConnectionID /* acceptedID */, ConnectionID /* listenerID */, Socket::Domain) { }
    4141    virtual void didClose(ConnectionID) = 0;
    4242
Note: See TracChangeset for help on using the changeset viewer.