| Index: Source/core/html/TimeRanges.cpp
|
| diff --git a/Source/core/html/TimeRanges.cpp b/Source/core/html/TimeRanges.cpp
|
| index d2672eb0424df8a01b8335db0e071a3a61a32070..474517034e5f4021fe81aabc3f956cb791fbea3e 100644
|
| --- a/Source/core/html/TimeRanges.cpp
|
| +++ b/Source/core/html/TimeRanges.cpp
|
| @@ -113,19 +113,19 @@ void TimeRanges::unionWith(const TimeRanges* other)
|
| m_ranges.swap(unioned->m_ranges);
|
| }
|
|
|
| -double TimeRanges::start(unsigned index, ExceptionState& es) const
|
| +double TimeRanges::start(unsigned index, ExceptionState& exceptionState) const
|
| {
|
| if (index >= length()) {
|
| - es.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| return 0;
|
| }
|
| return m_ranges[index].m_start;
|
| }
|
|
|
| -double TimeRanges::end(unsigned index, ExceptionState& es) const
|
| +double TimeRanges::end(unsigned index, ExceptionState& exceptionState) const
|
| {
|
| if (index >= length()) {
|
| - es.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| + exceptionState.throwUninformativeAndGenericDOMException(IndexSizeError);
|
| return 0;
|
| }
|
| return m_ranges[index].m_end;
|
|
|