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/web/
PageOverlay.h 37 class GraphicsLayer;
62 WebCore::GraphicsLayer* graphicsLayer() const { return m_layer.get(); }
71 OwnPtr<WebCore::GraphicsLayer> m_layer;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ImageLayerChromiumTest.cpp 28 #include "core/platform/graphics/GraphicsLayer.h"
40 virtual void notifyAnimationStarted(const GraphicsLayer*, double time) OVERRIDE { }
41 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip) OVERRIDE { }
107 class GraphicsLayerForTesting : public GraphicsLayer {
110 : GraphicsLayer(client) { };
116 OwnPtr<GraphicsLayerForTesting> graphicsLayer = adoptPtr(new GraphicsLayerForTesting(&client));
117 ASSERT_TRUE(graphicsLayer.get());
124 ASSERT_FALSE(graphicsLayer->contentsLayer());
126 graphicsLayer->setContentsToImage(opaqueImage.get());
127 ASSERT_TRUE(graphicsLayer->contentsLayer()->opaque())
    [all...]
ScrollingCoordinatorChromiumTest.cpp 37 #include "core/platform/graphics/GraphicsLayer.h"
156 GraphicsLayer* graphicsLayer = backing->graphicsLayer();
157 if (!graphicsLayer)
159 return graphicsLayer->platformLayer();
298 GraphicsLayer* graphicsLayer = layerBacking->scrollingContentsLayer();
299 ASSERT_EQ(layer, graphicsLayer->scrollableArea());
341 GraphicsLayer* scrollLayer = innerCompositor->scrollLayer()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerBacking.h 31 #include "core/platform/graphics/GraphicsLayer.h"
48 // A GraphicsLayerPaintInfo contains all the info needed to paint a partial subtree of RenderLayers into a GraphicsLayer.
90 GraphicsLayer* graphicsLayer() const { return m_graphicsLayer.get(); }
94 GraphicsLayer* clippingLayer() const { return m_childContainmentLayer.get(); }
98 GraphicsLayer* ancestorClippingLayer() const { return m_ancestorClippingLayer.get(); }
101 GraphicsLayer* foregroundLayer() const { return m_foregroundLayer.get(); }
103 GraphicsLayer* backgroundLayer() const { return m_backgroundLayer.get(); }
107 GraphicsLayer* scrollingLayer() const { return m_scrollingLayer.get(); }
108 GraphicsLayer* scrollingContentsLayer() const { return m_scrollingContentsLayer.get();
    [all...]
RenderLayerBacking.cpp 45 #include "core/platform/graphics/GraphicsLayer.h"
183 PassOwnPtr<GraphicsLayer> RenderLayerBacking::createGraphicsLayer(const String& name, CompositingReasons reasons)
189 OwnPtr<GraphicsLayer> graphicsLayer = GraphicsLayer::create(graphicsLayerFactory, this);
192 graphicsLayer->setName(name);
197 graphicsLayer->setCompositingReasons(reasons);
199 return graphicsLayer.release();
353 // the transform-origin via the GraphicsLayer anchorPoint (which is expressed as a fractional value).
386 // position of this layer's GraphicsLayer depends on the position of our compositin
    [all...]
RenderLayerCompositor.cpp 50 #include "core/platform/graphics/GraphicsLayer.h"
307 GraphicsLayer* rootLayer = rootGraphicsLayer();
432 Vector<GraphicsLayer*> childList;
553 // If we're removing backing on a reflection, clear the source GraphicsLayer's pointer to
554 // its replica GraphicsLayer. In practice this should never happen because reflectee and reflection
559 ASSERT(backing->graphicsLayer()->replicaLayer() == layer->backing()->graphicsLayer());
560 backing->graphicsLayer()->setReplicatedByLayer(0);
646 // The bounds of the GraphicsLayer created for a compositing layer is the union of the bounds of all the descendant
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 44 #include "core/platform/graphics/GraphicsLayer.h"
72 static WebLayer* scrollingWebLayerForGraphicsLayer(GraphicsLayer* layer)
79 GraphicsLayer* graphicsLayer = scrollLayerForScrollableArea(scrollableArea);
80 return graphicsLayer ? scrollingWebLayerForGraphicsLayer(graphicsLayer) : 0;
97 GraphicsLayer::unregisterContentsLayer(it->value->layer());
99 GraphicsLayer::unregisterContentsLayer(it->value->layer());
146 void ScrollingCoordinator::setLayerIsContainerForFixedPositionLayers(GraphicsLayer* layer, bool enable)
152 static void clearPositionConstraintExceptForLayer(GraphicsLayer* layer, GraphicsLayer* except
    [all...]

Completed in 176 milliseconds