| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011, 2012, 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011, 2012, 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 : m_startTime(start) | 191 : m_startTime(start) |
| 192 , m_endTime(end) | 192 , m_endTime(end) |
| 193 , m_content(content) | 193 , m_content(content) |
| 194 , m_linePosition(undefinedPosition) | 194 , m_linePosition(undefinedPosition) |
| 195 , m_computedLinePosition(undefinedPosition) | 195 , m_computedLinePosition(undefinedPosition) |
| 196 , m_textPosition(50) | 196 , m_textPosition(50) |
| 197 , m_cueSize(100) | 197 , m_cueSize(100) |
| 198 , m_cueIndex(invalidCueIndex) | 198 , m_cueIndex(invalidCueIndex) |
| 199 , m_writingDirection(Horizontal) | 199 , m_writingDirection(Horizontal) |
| 200 , m_cueAlignment(Middle) | 200 , m_cueAlignment(Middle) |
| 201 , m_webVTTNodeTree(0) | |
| 202 , m_track(0) | 201 , m_track(0) |
| 203 , m_scriptExecutionContext(context) | 202 , m_scriptExecutionContext(context) |
| 204 , m_isActive(false) | 203 , m_isActive(false) |
| 205 , m_pauseOnExit(false) | 204 , m_pauseOnExit(false) |
| 206 , m_snapToLines(true) | 205 , m_snapToLines(true) |
| 207 , m_cueBackgroundBox(HTMLDivElement::create(toDocument(context))) | 206 , m_cueBackgroundBox(HTMLDivElement::create(toDocument(context))) |
| 208 , m_displayTreeShouldChange(true) | 207 , m_displayTreeShouldChange(true) |
| 209 , m_displayDirection(CSSValueLtr) | 208 , m_displayDirection(CSSValueLtr) |
| 210 { | 209 { |
| 211 ASSERT(m_scriptExecutionContext->isDocument()); | 210 ASSERT(m_scriptExecutionContext->isDocument()); |
| (...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1178 if (m_cueSize != cue.size()) | 1177 if (m_cueSize != cue.size()) |
| 1179 return false; | 1178 return false; |
| 1180 if (align() != cue.align()) | 1179 if (align() != cue.align()) |
| 1181 return false; | 1180 return false; |
| 1182 | 1181 |
| 1183 return true; | 1182 return true; |
| 1184 } | 1183 } |
| 1185 | 1184 |
| 1186 } // namespace WebCore | 1185 } // namespace WebCore |
| 1187 | 1186 |
| OLD | NEW |