[MSE] Refactoring: Use C++11 for-loops in SourceBuffer.
Created attachment 233918 [details] Patch
Comment on attachment 233918 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=233918&action=review > Source/WebCore/Modules/mediasource/SourceBuffer.cpp:316 > + AtomicString trackID = trackBufferPair.key; Wasting a little performance here by using AtomicString instead of const AtomicString& or auto&.
(In reply to comment #2) > (From update of attachment 233918 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=233918&action=review > > > Source/WebCore/Modules/mediasource/SourceBuffer.cpp:316 > > + AtomicString trackID = trackBufferPair.key; > > Wasting a little performance here by using AtomicString instead of const AtomicString& or auto&. Good point. Will fix that (as well as a compilation error) before landing.
Committed r170488: <http://trac.webkit.org/changeset/170488>