| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2012 Google 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 | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 static PassRefPtr<MediaControlTextTrackContainerElement> create(Document*); | 252 static PassRefPtr<MediaControlTextTrackContainerElement> create(Document*); |
| 253 | 253 |
| 254 void updateDisplay(); | 254 void updateDisplay(); |
| 255 void updateSizes(bool forceUpdate = false); | 255 void updateSizes(bool forceUpdate = false); |
| 256 static const AtomicString& textTrackContainerElementShadowPseudoId(); | 256 static const AtomicString& textTrackContainerElementShadowPseudoId(); |
| 257 | 257 |
| 258 private: | 258 private: |
| 259 explicit MediaControlTextTrackContainerElement(Document*); | 259 explicit MediaControlTextTrackContainerElement(Document*); |
| 260 virtual const AtomicString& shadowPseudoId() const OVERRIDE; | 260 virtual const AtomicString& shadowPseudoId() const OVERRIDE; |
| 261 | 261 |
| 262 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); | 262 virtual RenderObject* createRenderer(RenderStyle*); |
| 263 | 263 |
| 264 IntRect m_videoDisplaySize; | 264 IntRect m_videoDisplaySize; |
| 265 float m_fontSize; | 265 float m_fontSize; |
| 266 }; | 266 }; |
| 267 | 267 |
| 268 | 268 |
| 269 } // namespace WebCore | 269 } // namespace WebCore |
| 270 | 270 |
| 271 #endif // MediaControlElements_h | 271 #endif // MediaControlElements_h |
| OLD | NEW |