OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WebLayerImpl
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/webkit/renderer/compositor_bindings/
web_layer_impl.h
48
class
WebLayerImpl
: public blink::WebLayer, public cc::LayerClient {
50
WEBKIT_COMPOSITOR_BINDINGS_EXPORT
WebLayerImpl
();
51
WEBKIT_COMPOSITOR_BINDINGS_EXPORT explicit
WebLayerImpl
(
53
virtual ~
WebLayerImpl
();
151
DISALLOW_COPY_AND_ASSIGN(
WebLayerImpl
);
web_layer_impl.cc
41
WebLayerImpl
::
WebLayerImpl
() : layer_(Layer::Create()) {
46
WebLayerImpl
::
WebLayerImpl
(scoped_refptr<Layer> layer) : layer_(layer) {
51
WebLayerImpl
::~
WebLayerImpl
() {
57
int
WebLayerImpl
::id() const { return layer_->id(); }
59
void
WebLayerImpl
::invalidateRect(const blink::WebFloatRect& rect) {
63
void
WebLayerImpl
::invalidate() { layer_->SetNeedsDisplay(); }
65
void
WebLayerImpl
::addChild(WebLayer* child)
[
all
...]
Completed in 35 milliseconds