| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 3 * Copyright (C) 2011, 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 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "config.h" | 27 #include "config.h" |
| 28 #include "core/html/shadow/MediaControls.h" | 28 #include "core/html/shadow/MediaControls.h" |
| 29 | 29 |
| 30 #include "bindings/v8/ExceptionStatePlaceholder.h" | 30 #include "bindings/v8/ExceptionStatePlaceholder.h" |
| 31 | 31 |
| 32 namespace WebCore { | 32 namespace WebCore { |
| 33 | 33 |
| 34 static const double timeWithoutMouseMovementBeforeHidingFullscreenControls = 3; | 34 static const double timeWithoutMouseMovementBeforeHidingFullscreenControls = 3; |
| 35 | 35 |
| 36 MediaControls::MediaControls(Document& document) | 36 MediaControls::MediaControls(Document& document) |
| 37 : HTMLDivElement(HTMLNames::divTag, document) | 37 : HTMLDivElement(document) |
| 38 , m_mediaController(0) | 38 , m_mediaController(0) |
| 39 , m_panel(0) | 39 , m_panel(0) |
| 40 , m_textDisplayContainer(0) | 40 , m_textDisplayContainer(0) |
| 41 , m_playButton(0) | 41 , m_playButton(0) |
| 42 , m_currentTimeDisplay(0) | 42 , m_currentTimeDisplay(0) |
| 43 , m_timeline(0) | 43 , m_timeline(0) |
| 44 , m_panelMuteButton(0) | 44 , m_panelMuteButton(0) |
| 45 , m_volumeSlider(0) | 45 , m_volumeSlider(0) |
| 46 , m_toggleClosedCaptionsButton(0) | 46 , m_toggleClosedCaptionsButton(0) |
| 47 , m_fullScreenButton(0) | 47 , m_fullScreenButton(0) |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 | 378 |
| 379 void MediaControls::updateTextTrackDisplay() | 379 void MediaControls::updateTextTrackDisplay() |
| 380 { | 380 { |
| 381 if (!m_textDisplayContainer) | 381 if (!m_textDisplayContainer) |
| 382 createTextTrackDisplay(); | 382 createTextTrackDisplay(); |
| 383 | 383 |
| 384 m_textDisplayContainer->updateDisplay(); | 384 m_textDisplayContainer->updateDisplay(); |
| 385 } | 385 } |
| 386 | 386 |
| 387 } | 387 } |
| OLD | NEW |