RESOLVED FIXED 130573
[WK2] Refine WebKit2 BatteryStatus code
https://bugs.webkit.org/show_bug.cgi?id=130573
Summary [WK2] Refine WebKit2 BatteryStatus code
Jinwoo Song
Reported 2014-03-21 02:16:01 PDT
Refinements - Return PassRef instead of PassRefPtr in create methods - Use auto instead of iterator
Attachments
Patch (5.65 KB, patch)
2014-03-21 02:44 PDT, Jinwoo Song
no flags
Patch (5.52 KB, patch)
2014-03-23 21:00 PDT, Jinwoo Song
no flags
Jinwoo Song
Comment 1 2014-03-21 02:44:51 PDT
Anders Carlsson
Comment 2 2014-03-23 08:18:36 PDT
Comment on attachment 227405 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=227405&action=review > Source/WebKit2/WebProcess/Battery/WebBatteryManager.cpp:80 > + for (auto it = m_pageSet.begin(), end = m_pageSet.end(); it != end; ++it) { This can just use the range for syntax, for (auto* page : m_pageSet) > Source/WebKit2/WebProcess/Battery/WebBatteryManager.cpp:91 > + for (auto it = m_pageSet.begin(), end = m_pageSet.end(); it != end; ++it) { Ditto.
Jinwoo Song
Comment 3 2014-03-23 21:00:35 PDT
Created attachment 227621 [details] Patch Applied Andersca's comments.
WebKit Commit Bot
Comment 4 2014-03-23 21:38:22 PDT
Comment on attachment 227621 [details] Patch Clearing flags on attachment: 227621 Committed r166148: <http://trac.webkit.org/changeset/166148>
WebKit Commit Bot
Comment 5 2014-03-23 21:38:26 PDT
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.