HomeSort by relevance Sort by last modified time
    Searched defs:DrawingAreaImpl (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/WebPage/
DrawingAreaImpl.h 38 class DrawingAreaImpl : public DrawingArea {
40 static PassOwnPtr<DrawingAreaImpl> create(WebPage*, const WebPageCreationParameters&);
41 virtual ~DrawingAreaImpl();
47 DrawingAreaImpl(WebPage*, const WebPageCreationParameters&);
104 RunLoop::Timer<DrawingAreaImpl> m_displayTimer;
105 RunLoop::Timer<DrawingAreaImpl> m_exitCompositingTimer;
DrawingAreaImpl.cpp 27 #include "DrawingAreaImpl.h"
49 PassOwnPtr<DrawingAreaImpl> DrawingAreaImpl::create(WebPage* webPage, const WebPageCreationParameters& parameters)
51 return adoptPtr(new DrawingAreaImpl(webPage, parameters));
54 DrawingAreaImpl::~DrawingAreaImpl()
60 DrawingAreaImpl::DrawingAreaImpl(WebPage* webPage, const WebPageCreationParameters& parameters)
69 , m_displayTimer(WebProcess::shared().runLoop(), this, &DrawingAreaImpl::displayTimerFired)
70 , m_exitCompositingTimer(WebProcess::shared().runLoop(), this, &DrawingAreaImpl::exitAcceleratedCompositingMode
    [all...]

Completed in 146 milliseconds