OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DrawingAreaImpl
(Results
1 - 5
of
5
) 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
...]
DrawingArea.cpp
33
#include "
DrawingAreaImpl
.h"
49
return
DrawingAreaImpl
::create(webPage, parameters);
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
LayerTreeHostCA.cpp
29
#include "
DrawingAreaImpl
.h"
216
static_cast<
DrawingAreaImpl
*>(m_webPage->drawingArea())->layerHostDidFlushLayers();
/external/webkit/Source/WebKit2/WebProcess/WebPage/ca/win/
LayerTreeHostCAWin.cpp
31
#include "
DrawingAreaImpl
.h"
253
static_cast<
DrawingAreaImpl
*>(m_webPage->drawingArea())->setLayerHostNeedsDisplay();
Completed in 86 milliseconds