OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_contentsLayer
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayer.cpp
102
,
m_contentsLayer
(0)
377
if (
m_contentsLayer
) {
381
childHost->addChild(
m_contentsLayer
);
400
// flags are combined here.
m_contentsLayer
shouldn't receive the drawsContent flag
465
if (
m_contentsLayer
) {
469
m_contentsLayer
= 0;
481
m_contentsLayer
= contentsLayer;
482
m_contentsLayerId =
m_contentsLayer
->id();
484
m_contentsLayer
->setWebLayerClient(this);
485
m_contentsLayer
->setAnchorPoint(FloatPoint(0, 0))
[
all
...]
GraphicsLayer.h
240
bool hasContentsLayer() const { return
m_contentsLayer
; }
311
virtual blink::WebLayer* contentsLayer() const { return
m_contentsLayer
; }
395
blink::WebLayer*
m_contentsLayer
;
396
// We don't have ownership of
m_contentsLayer
, but we do want to know if a given layer is the
397
// same as our current layer in setContentsTo(). Since
m_contentsLayer
may be deleted at this point,
398
// we stash an ID away when we know
m_contentsLayer
is alive and use that for comparisons from that point
Completed in 24 milliseconds