| Index: Source/core/html/track/TextTrackCue.cpp
|
| diff --git a/Source/core/html/track/TextTrackCue.cpp b/Source/core/html/track/TextTrackCue.cpp
|
| index 37222ac4da5b144c3dbcd7fea0ad36ead00ba633..dd53fc68ed1f4900f966f1dce916dde5d0917b66 100644
|
| --- a/Source/core/html/track/TextTrackCue.cpp
|
| +++ b/Source/core/html/track/TextTrackCue.cpp
|
| @@ -942,9 +942,8 @@ TextTrackCue::CueSetting TextTrackCue::settingName(const String& name)
|
| return None;
|
| }
|
|
|
| -void TextTrackCue::setCueSettings(const String& input)
|
| +void TextTrackCue::parseSettings(const String& input)
|
| {
|
| - m_settings = input;
|
| unsigned position = 0;
|
|
|
| while (position < input.length()) {
|
| @@ -1205,28 +1204,4 @@ Document& TextTrackCue::document() const
|
| return m_cueBackgroundBox->document();
|
| }
|
|
|
| -bool TextTrackCue::operator==(const TextTrackCue& cue) const
|
| -{
|
| - if (m_endTime != cue.endTime())
|
| - return false;
|
| - if (m_startTime != cue.startTime())
|
| - return false;
|
| - if (m_content != cue.text())
|
| - return false;
|
| - if (m_settings != cue.cueSettings())
|
| - return false;
|
| - if (m_id != cue.id())
|
| - return false;
|
| - if (m_textPosition != cue.position())
|
| - return false;
|
| - if (m_linePosition != cue.line())
|
| - return false;
|
| - if (m_cueSize != cue.size())
|
| - return false;
|
| - if (align() != cue.align())
|
| - return false;
|
| -
|
| - return true;
|
| -}
|
| -
|
| } // namespace WebCore
|
|
|