RESOLVED FIXED 151044
Implement -[_WKRemoteObjectInterface debugDescription] and have it look like the NSXPCInterface equivalent
https://bugs.webkit.org/show_bug.cgi?id=151044
Summary Implement -[_WKRemoteObjectInterface debugDescription] and have it look like ...
Anders Carlsson
Reported 2015-11-09 12:00:42 PST
Implement -[_WKRemoteObjectInterface debugDescription] and have it look like the NSXPCInterface equivalent
Attachments
Patch (4.26 KB, patch)
2015-11-09 12:07 PST, Anders Carlsson
thorton: review+
Anders Carlsson
Comment 1 2015-11-09 12:07:53 PST
WebKit Commit Bot
Comment 2 2015-11-09 12:10:50 PST
Attachment 265078 [details] did not pass style-queue: ERROR: Source/WebKit2/Shared/API/Cocoa/_WKRemoteObjectInterface.mm:186: Place brace on its own line for function definitions. [whitespace/braces] [4] ERROR: Source/WebKit2/Shared/API/Cocoa/_WKRemoteObjectInterface.mm:190: Place brace on its own line for function definitions. [whitespace/braces] [4] Total errors found: 2 in 2 files If any of these errors are false positives, please file a bug against check-webkit-style.
Tim Horton
Comment 3 2015-11-09 12:11:48 PST
Comment on attachment 265078 [details] Patch Should we really use NSMutableString instead of StringBuilder or something like that?
Anders Carlsson
Comment 4 2015-11-09 12:15:20 PST
(In reply to comment #3) > Comment on attachment 265078 [details] > Patch > > Should we really use NSMutableString instead of StringBuilder or something > like that? Since this is debug-only code it doesn't really matter.
Anders Carlsson
Comment 5 2015-11-09 12:16:30 PST
Darin Adler
Comment 6 2015-11-10 08:43:50 PST
Comment on attachment 265078 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=265078&action=review > Source/WebKit2/Shared/API/Cocoa/_WKRemoteObjectInterface.mm:197 > + return CString(class_getName(a)) < CString(class_getName(b)); Why copy these strings with the CString constructor instead of just using strcmp directly?
Darin Adler
Comment 7 2015-11-10 08:44:29 PST
Comment on attachment 265078 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=265078&action=review >> Source/WebKit2/Shared/API/Cocoa/_WKRemoteObjectInterface.mm:197 >> + return CString(class_getName(a)) < CString(class_getName(b)); > > Why copy these strings with the CString constructor instead of just using strcmp directly? I guess the answer is “debug-only code and doesn’t matter”, but still!
Note You need to log in before you can comment on or make changes to this bug.