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

Side by Side 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, 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 22 matching lines...) Expand all
33 TextTrackCueList::TextTrackCueList() 33 TextTrackCueList::TextTrackCueList()
34 : m_firstInvalidIndex(0) 34 : m_firstInvalidIndex(0)
35 { 35 {
36 } 36 }
37 37
38 unsigned long TextTrackCueList::length() const 38 unsigned long TextTrackCueList::length() const
39 { 39 {
40 return m_list.size(); 40 return m_list.size();
41 } 41 }
42 42
43 TextTrackCue* TextTrackCueList::item(unsigned index) const 43 TextTrackCue* TextTrackCueList::anonymousIndexedGetter(unsigned index) const
44 { 44 {
45 if (index < m_list.size()) 45 if (index < m_list.size())
46 return m_list[index].get(); 46 return m_list[index].get();
47 return nullptr; 47 return nullptr;
48 } 48 }
49 49
50 TextTrackCue* TextTrackCueList::getCueById(const AtomicString& id) const 50 TextTrackCue* TextTrackCueList::getCueById(const AtomicString& id) const
51 { 51 {
52 for (size_t i = 0; i < m_list.size(); ++i) { 52 for (size_t i = 0; i < m_list.size(); ++i) {
53 if (m_list[i]->id() == id) 53 if (m_list[i]->id() == id)
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 m_list[i]->updateCueIndex(safeCast<unsigned>(i)); 143 m_list[i]->updateCueIndex(safeCast<unsigned>(i));
144 m_firstInvalidIndex = m_list.size(); 144 m_firstInvalidIndex = m_list.size();
145 } 145 }
146 146
147 DEFINE_TRACE(TextTrackCueList) 147 DEFINE_TRACE(TextTrackCueList)
148 { 148 {
149 visitor->trace(m_list); 149 visitor->trace(m_list);
150 } 150 }
151 151
152 } // namespace blink 152 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698