| Summary: | Add logging around internalError(const URL&) | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Keith Rollin <krollin> | ||||||
| Component: | WebKit Misc. | Assignee: | Keith Rollin <krollin> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | benjamin, bfulgham, cdumez, cmarcelo, commit-queue, dbates, ews-watchlist, webkit-bug-importer | ||||||
| Priority: | P2 | Keywords: | InRadar | ||||||
| Version: | WebKit Nightly Build | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| Attachments: |
|
||||||||
|
Description
Keith Rollin
2018-06-06 16:09:25 PDT
Created attachment 342090 [details]
Patch
Created attachment 342094 [details]
Fix build error
Comment on attachment 342094 [details] Fix build error View in context: https://bugs.webkit.org/attachment.cgi?id=342094&action=review Looks good! I suggest the modern C++ loop. > Source/WTF/wtf/Assertions.cpp:556 > + for (int frameNumber = 1; frameNumber < stackTrace->size(); ++frameNumber) { Could this be a modern C++ loop? for (auto stackFrame : stackTrace->stack()) { ... (In reply to Brent Fulgham from comment #4) > Comment on attachment 342094 [details] > Fix build error > > View in context: > https://bugs.webkit.org/attachment.cgi?id=342094&action=review > > Looks good! I suggest the modern C++ loop. > > > Source/WTF/wtf/Assertions.cpp:556 > > + for (int frameNumber = 1; frameNumber < stackTrace->size(); ++frameNumber) { > > Could this be a modern C++ loop? > > for (auto stackFrame : stackTrace->stack()) { > ... I spoke with Keith in person, and realized that we need the index for logging. So never mind! Comment on attachment 342094 [details] Fix build error Clearing flags on attachment: 342094 Committed r232734: <https://trac.webkit.org/changeset/232734> All reviewed patches have been landed. Closing bug. |