RESOLVED FIXED 118299
Modernize QualifiedName by wrapping gNameCache in a function and using more early exits
https://bugs.webkit.org/show_bug.cgi?id=118299
Summary Modernize QualifiedName by wrapping gNameCache in a function and using more e...
Ryosuke Niwa
Reported 2013-07-02 05:54:19 PDT
It seems like QualifiedName.cpp hasn’t been updated in a while. Do some cleanups to match the modern coding style in WebKit.
Attachments
Cleanup (3.43 KB, patch)
2013-07-02 05:58 PDT, Ryosuke Niwa
kling: review+
Ryosuke Niwa
Comment 1 2013-07-02 05:58:12 PDT
Ryosuke Niwa
Comment 2 2013-07-02 22:08:52 PDT
Benjamin Poulain
Comment 3 2013-07-02 23:20:32 PDT
Comment on attachment 205898 [details] Cleanup View in context: https://bugs.webkit.org/attachment.cgi?id=205898&action=review Man, you have a hard time vacationing :-D > Source/WebCore/dom/QualifiedName.cpp:124 > + result.append(prefix()); > + result.append(':'); > + result.append(localName()); > + return result.toString(); return prefix() + ':' + localName(); would be better here.
Ryosuke Niwa
Comment 4 2013-07-14 17:45:08 PDT
Ryosuke Niwa
Comment 5 2013-07-14 18:30:26 PDT
Note You need to log in before you can comment on or make changes to this bug.