OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GraphicsLayer
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayer.cpp
28
#include "platform/graphics/
GraphicsLayer
.h"
67
typedef HashMap<const
GraphicsLayer
*, Vector<FloatRect> > RepaintMap;
74
PassOwnPtr<
GraphicsLayer
>
GraphicsLayer
::create(GraphicsLayerFactory* factory, GraphicsLayerClient* client)
79
GraphicsLayer
::
GraphicsLayer
(GraphicsLayerClient* client)
120
GraphicsLayer
::~
GraphicsLayer
()
144
void
GraphicsLayer
::setParent(
GraphicsLayer
* layer
[
all
...]
GraphicsLayer.h
79
//
GraphicsLayer
is an abstraction for a rendering surface with backing store,
82
class PLATFORM_EXPORT
GraphicsLayer
: public GraphicsContextPainter, public blink::WebAnimationDelegate, public blink::WebLayerScrollClient, public blink::WebLayerClient {
83
WTF_MAKE_NONCOPYABLE(
GraphicsLayer
); WTF_MAKE_FAST_ALLOCATED;
85
static PassOwnPtr<
GraphicsLayer
> create(GraphicsLayerFactory*, GraphicsLayerClient*);
87
virtual ~
GraphicsLayer
();
98
GraphicsLayer
* parent() const { return m_parent; };
99
void setParent(
GraphicsLayer
*); // Internal use only.
102
bool hasAncestor(
GraphicsLayer
*) const;
104
const Vector<
GraphicsLayer
*>& children() const { return m_children; }
106
bool setChildren(const Vector<
GraphicsLayer
*>&)
[
all
...]
Completed in 28 milliseconds