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

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

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.idl
diff --git a/third_party/WebKit/Source/core/html/track/TextTrackCueList.idl b/third_party/WebKit/Source/core/html/track/TextTrackCueList.idl
index ac6f6208d8a9c213f41ae688ebbf64c05f801f20..116c75c8d246642581c77debd20be483eb925e22 100644
--- a/third_party/WebKit/Source/core/html/track/TextTrackCueList.idl
+++ b/third_party/WebKit/Source/core/html/track/TextTrackCueList.idl
@@ -29,7 +29,6 @@
GarbageCollected,
] interface TextTrackCueList {
readonly attribute unsigned long length;
- // TODO(philipj): This getter should be anonymous.
- [Measure] getter TextTrackCue item(unsigned long index);
+ getter TextTrackCue (unsigned long index);
TextTrackCue? getCueById(DOMString id);
};

Powered by Google App Engine
This is Rietveld 408576698