Title: [204686] trunk/Source/_javascript_Core
- Revision
- 204686
- Author
- [email protected]
- Date
- 2016-08-20 18:43:31 -0700 (Sat, 20 Aug 2016)
Log Message
Remote Inspector: some methods don't need to be marked virtual anymore
https://bugs.webkit.org/show_bug.cgi?id=161033
Reviewed by Darin Adler.
This probably happened when this code was last refactored and moved around.
* inspector/remote/RemoteConnectionToTarget.h:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (204685 => 204686)
--- trunk/Source/_javascript_Core/ChangeLog 2016-08-21 01:09:10 UTC (rev 204685)
+++ trunk/Source/_javascript_Core/ChangeLog 2016-08-21 01:43:31 UTC (rev 204686)
@@ -1,3 +1,14 @@
+2016-08-20 Brian Burg <[email protected]>
+
+ Remote Inspector: some methods don't need to be marked virtual anymore
+ https://bugs.webkit.org/show_bug.cgi?id=161033
+
+ Reviewed by Darin Adler.
+
+ This probably happened when this code was last refactored and moved around.
+
+ * inspector/remote/RemoteConnectionToTarget.h:
+
2016-08-19 Sam Weinig <[email protected]>
Location.ancestorOrigins should return a FrozenArray<USVString>
Modified: trunk/Source/_javascript_Core/inspector/remote/RemoteConnectionToTarget.h (204685 => 204686)
--- trunk/Source/_javascript_Core/inspector/remote/RemoteConnectionToTarget.h 2016-08-21 01:09:10 UTC (rev 204685)
+++ trunk/Source/_javascript_Core/inspector/remote/RemoteConnectionToTarget.h 2016-08-21 01:43:31 UTC (rev 204686)
@@ -49,9 +49,9 @@
// Main API.
bool setup(bool isAutomaticInspection = false, bool automaticallyPause = false);
- virtual void sendMessageToTarget(NSString *);
- virtual void close();
- virtual void targetClosed();
+ void sendMessageToTarget(NSString *);
+ void close();
+ void targetClosed();
Optional<unsigned> targetIdentifier() const;
NSString *connectionIdentifier() const;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes