Changeset 246299 in webkit
- Timestamp:
- Jun 10, 2019, 5:38:48 PM (7 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
inspector/remote/socket/RemoteInspectorConnectionClient.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r246285 r246299 1 2019-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 1 14 2019-06-10 Sam Weinig <weinig@apple.com> 2 15 -
trunk/Source/JavaScriptCore/inspector/remote/socket/RemoteInspectorConnectionClient.h
r245536 r246299 38 38 public: 39 39 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) { } 41 41 virtual void didClose(ConnectionID) = 0; 42 42
Note:
See TracChangeset
for help on using the changeset viewer.