Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(603)

Unified Diff: Source/core/html/track/TextTrackList.h

Issue 656723005: Use C++11 features in core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: mike's comments Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/track/TextTrackCueList.cpp ('k') | Source/core/html/track/TextTrackList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/TextTrackList.h
diff --git a/Source/core/html/track/TextTrackList.h b/Source/core/html/track/TextTrackList.h
index 101ddc4a1627500a65f83e9a0ea0e25064e60ea5..a45d1cff3ce639567f5209eb3f8a5520371612a0 100644
--- a/Source/core/html/track/TextTrackList.h
+++ b/Source/core/html/track/TextTrackList.h
@@ -93,9 +93,9 @@ private:
OwnPtrWillBeMember<GenericEventQueue> m_asyncEventQueue;
- WillBeHeapVector<RefPtrWillBeMember<TextTrack> > m_addTrackTracks;
- WillBeHeapVector<RefPtrWillBeMember<TextTrack> > m_elementTracks;
- WillBeHeapVector<RefPtrWillBeMember<TextTrack> > m_inbandTracks;
+ WillBeHeapVector<RefPtrWillBeMember<TextTrack>> m_addTrackTracks;
+ WillBeHeapVector<RefPtrWillBeMember<TextTrack>> m_elementTracks;
+ WillBeHeapVector<RefPtrWillBeMember<TextTrack>> m_inbandTracks;
};
} // namespace blink
« no previous file with comments | « Source/core/html/track/TextTrackCueList.cpp ('k') | Source/core/html/track/TextTrackList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698