HomeSort by relevance Sort by last modified time
    Searched defs:graphicsLayer (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageLayerChromiumTest.cpp 28 #include "platform/graphics/GraphicsLayer.h"
40 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE { }
41 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip) OVERRIDE { }
42 virtual String debugName(const GraphicsLayer*) OVERRIDE { return String(); }
101 class GraphicsLayerForTesting : public GraphicsLayer {
104 : GraphicsLayer(client) { };
106 virtual WebLayer* contentsLayer() const { return GraphicsLayer::contentsLayer(); }
112 OwnPtr<GraphicsLayerForTesting> graphicsLayer = adoptPtr(new GraphicsLayerForTesting(&client));
113 ASSERT_TRUE(graphicsLayer.get());
115 ASSERT_FALSE(graphicsLayer->hasContentsLayer())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PageOverlay.h 38 class GraphicsLayer;
61 GraphicsLayer* graphicsLayer() const { return m_layer.get(); }
70 OwnPtr<GraphicsLayer> m_layer;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollingCoordinatorChromiumTest.cpp 35 #include "platform/graphics/GraphicsLayer.h"
158 GraphicsLayer* graphicsLayer = compositedLayerMapping->mainGraphicsLayer();
159 if (!graphicsLayer)
161 return graphicsLayer->platformLayer();
313 GraphicsLayer* graphicsLayer = compositedLayerMapping->scrollingContentsLayer();
314 ASSERT_EQ(box->layer()->scrollableArea(), graphicsLayer->scrollableArea());
353 GraphicsLayer* graphicsLayer = compositedLayerMapping->scrollingContentsLayer()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorLayerTreeAgent.cpp 62 inline String idForLayer(const GraphicsLayer* graphicsLayer)
64 return String::number(graphicsLayer->platformLayer()->id());
80 static PassRefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::ScrollRect> > buildScrollRectsForLayer(GraphicsLayer* graphicsLayer)
83 blink::WebLayer* webLayer = graphicsLayer->platformLayer();
97 static PassRefPtr<TypeBuilder::LayerTree::Layer> buildObjectForLayer(GraphicsLayer* graphicsLayer, int nodeId)
99 blink::WebLayer* webLayer = graphicsLayer->platformLayer();
101 .setLayerId(idForLayer(graphicsLayer))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 51 #include "platform/graphics/GraphicsLayer.h"
73 WebLayer* toWebLayer(blink::GraphicsLayer* layer)
179 void ScrollingCoordinator::setLayerIsContainerForFixedPositionLayers(GraphicsLayer* layer, bool enable)
185 static void clearPositionConstraintExceptForLayer(GraphicsLayer* layer, GraphicsLayer* except)
204 // Composited layers that inherit a fixed position state will be positioned with respect to the nearest compositedLayerMapping's GraphicsLayer.
214 GraphicsLayer* mainLayer = compositedLayerMapping->childForSuperlayers();
235 GraphicsLayer::unregisterContentsLayer(scrollbarLayer->layer());
245 GraphicsLayer::registerContentsLayer(scrollbarLayer->layer());
253 GraphicsLayer::registerContentsLayer(scrollbarLayer->layer())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
CompositedLayerMapping.cpp 202 PassOwnPtr<GraphicsLayer> CompositedLayerMapping::createGraphicsLayer(CompositingReasons reasons)
208 OwnPtr<GraphicsLayer> graphicsLayer = GraphicsLayer::create(graphicsLayerFactory, this);
210 graphicsLayer->setCompositingReasons(reasons);
212 graphicsLayer->setOwnerNodeId(InspectorNodeIds::idForNode(owningNode));
214 return graphicsLayer.release();
453 // that's plugged into another GraphicsLayer that is part of the hierarchy.
454 // It has no parent or child GraphicsLayer. For that reason, we process it
482 GraphicsLayer* reflectionLayer = m_owningLayer.reflectionInfo()->reflectionLayer()->compositedLayerMapping()->ma (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 612 GraphicsLayer* FrameView::layerForScrolling() const
620 GraphicsLayer* FrameView::layerForHorizontalScrollbar() const
628 GraphicsLayer* FrameView::layerForVerticalScrollbar() const
636 GraphicsLayer* FrameView::layerForScrollCorner() const
    [all...]

Completed in 76 milliseconds