HomeSort by relevance Sort by last modified time
    Searched refs:contentsLayer (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/web/tests/
ImageLayerChromiumTest.cpp 106 virtual blink::WebLayer* contentsLayer() const { return GraphicsLayer::contentsLayer(); }
120 ASSERT_FALSE(graphicsLayer->contentsLayer());
123 ASSERT_TRUE(graphicsLayer->contentsLayer()->opaque());
126 ASSERT_FALSE(graphicsLayer->contentsLayer()->opaque());
GraphicsLayerTest.cpp 61 virtual blink::WebLayer* contentsLayer() const { return GraphicsLayer::contentsLayer(); }
165 EXPECT_FALSE(m_graphicsLayer->contentsLayer());
168 EXPECT_TRUE(m_graphicsLayer->contentsLayer());
171 EXPECT_FALSE(m_graphicsLayer->contentsLayer());
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayer.cpp 404 if (WebLayer* contentsLayer = contentsLayerIfRegistered())
405 contentsLayer->setDrawsContent(m_contentsVisible);
416 WebLayer* contentsLayer = contentsLayerIfRegistered();
417 if (!contentsLayer)
420 contentsLayer->setPosition(FloatPoint(m_contentsRect.x(), m_contentsRect.y()));
421 contentsLayer->setBounds(IntSize(m_contentsRect.width(), m_contentsRect.height()));
478 void GraphicsLayer::setupContentsLayer(WebLayer* contentsLayer)
480 ASSERT(contentsLayer);
481 m_contentsLayer = contentsLayer;
488 // It is necessary to call setDrawsContent as soon as we receive the new contentsLayer, fo
    [all...]
GraphicsLayer.h 311 virtual blink::WebLayer* contentsLayer() const { return m_contentsLayer; }

Completed in 46 milliseconds