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

Side by Side Diff: Source/core/html/track/TextTrackCue.cpp

Issue 22887044: [oilpan] Make the oilpan branch build on Mac. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Add FIXME. Created 7 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/html/ImageDocument.cpp ('k') | Source/core/inspector/InspectorStyleSheet.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/html/ImageDocument.cpp ('k') | Source/core/inspector/InspectorStyleSheet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698