Lines Matching full:fullscreenvideocontroller
30 #include "FullscreenVideoController.h"
177 class FullscreenVideoController::LayerClient : public WebCore::PlatformCALayerClient {
179 LayerClient(FullscreenVideoController* parent) : m_parent(parent) { }
196 FullscreenVideoController* m_parent;
199 void FullscreenVideoController::LayerClient::platformCALayerLayoutSublayersOfLayer(PlatformCALayer* layer)
231 FullscreenVideoController::FullscreenVideoController()
243 , m_timer(this, &FullscreenVideoController::timerFired)
252 FullscreenVideoController::~FullscreenVideoController()
259 void FullscreenVideoController::setMediaElement(HTMLMediaElement* mediaElement)
271 void FullscreenVideoController::enterFullscreen()
297 void FullscreenVideoController::exitFullscreen()
319 bool FullscreenVideoController::canPlay() const
324 void FullscreenVideoController::play()
330 void FullscreenVideoController::pause()
336 float FullscreenVideoController::volume() const
341 void FullscreenVideoController::setVolume(float volume)
349 float FullscreenVideoController::currentTime() const
354 void FullscreenVideoController::setCurrentTime(float value)
362 float FullscreenVideoController::duration() const
367 void FullscreenVideoController::beginScrubbing()
373 void FullscreenVideoController::endScrubbing()
379 LRESULT FullscreenVideoController::fullscreenClientWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam)
404 void FullscreenVideoController::registerHUDWindowClass()
431 void FullscreenVideoController::createHUDWindow()
482 void FullscreenVideoController::draw()
559 LRESULT FullscreenVideoController::hudWndProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lParam)
562 FullscreenVideoController* controller = reinterpret_cast<FullscreenVideoController*>(longPtr);
587 void FullscreenVideoController::onChar(int c)
596 void FullscreenVideoController::onKeyDown(int virtualKey)
604 void FullscreenVideoController::timerFired(Timer<FullscreenVideoController>*)
611 void FullscreenVideoController::onMouseDown(const IntPoint& point)
650 void FullscreenVideoController::onMouseMove(const IntPoint& point)
665 void FullscreenVideoController::onMouseUp(const IntPoint& point)
693 void FullscreenVideoController::togglePlay()