Home
last modified time | relevance | path

Searched refs:MediaControlPanelElement (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DMediaControlElements.cpp87 MediaControlPanelElement::MediaControlPanelElement(MediaControls& mediaControls) in MediaControlPanelElement() function in blink::MediaControlPanelElement
91 , m_transitionTimer(this, &MediaControlPanelElement::transitionTimerFired) in MediaControlPanelElement()
95 PassRefPtrWillBeRawPtr<MediaControlPanelElement> MediaControlPanelElement::create(MediaControls& me… in create()
97 return adoptRefWillBeNoop(new MediaControlPanelElement(mediaControls)); in create()
100 const AtomicString& MediaControlPanelElement::shadowPseudoId() const in shadowPseudoId()
106 void MediaControlPanelElement::defaultEventHandler(Event* event) in defaultEventHandler()
117 void MediaControlPanelElement::startTimer() in startTimer()
128 void MediaControlPanelElement::stopTimer() in stopTimer()
134 void MediaControlPanelElement::transitionTimerFired(Timer<MediaControlPanelElement>*) in transitionTimerFired() argument
142 void MediaControlPanelElement::makeOpaque() in makeOpaque()
[all …]
DMediaControlElements.h39 class MediaControlPanelElement FINAL : public MediaControlDivElement {
41 static PassRefPtrWillBeRawPtr<MediaControlPanelElement> create(MediaControls&);
49 explicit MediaControlPanelElement(MediaControls&);
56 void transitionTimerFired(Timer<MediaControlPanelElement>*);
62 Timer<MediaControlPanelElement> m_transitionTimer;
DMediaControls.h116 RawPtrWillBeMember<MediaControlPanelElement> m_panel;
DMediaControls.cpp112 RefPtrWillBeRawPtr<MediaControlPanelElement> panel = MediaControlPanelElement::create(*this); in initializeControls()