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

Unified Diff: third_party/WebKit/Source/core/html/track/TextTrackCueList.cpp

Issue 1418133011: Remove the named item getters on TextTrackList and TextTrackCueList (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 2 months 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
Index: third_party/WebKit/Source/core/html/track/TextTrackCueList.cpp
diff --git a/third_party/WebKit/Source/core/html/track/TextTrackCueList.cpp b/third_party/WebKit/Source/core/html/track/TextTrackCueList.cpp
index c0f8f7711342b5a81e877fa2271c2446270a211a..3bffacb8ced2f6bd5bf6c63751e82a897e0e86ca 100644
--- a/third_party/WebKit/Source/core/html/track/TextTrackCueList.cpp
+++ b/third_party/WebKit/Source/core/html/track/TextTrackCueList.cpp
@@ -40,7 +40,7 @@ unsigned long TextTrackCueList::length() const
return m_list.size();
}
-TextTrackCue* TextTrackCueList::item(unsigned index) const
+TextTrackCue* TextTrackCueList::anonymousIndexedGetter(unsigned index) const
{
if (index < m_list.size())
return m_list[index].get();

Powered by Google App Engine
This is Rietveld 408576698