Searched defs:GraphicsLayer (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
H A DPageOverlay.cpp35 #include "platform/graphics/GraphicsLayer.h"
74 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE { }
76 virtual void paintContents(const GraphicsLayer*, GraphicsContext& gc, GraphicsLayerPaintingPhase, const IntRect& inClip) argument
83 virtual String debugName(const GraphicsLayer* graphicsLayer) OVERRIDE
116 m_layer = GraphicsLayer::create(m_viewImpl->graphicsLayerFactory(), m_layerClient.get());
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DPinchViewport.cpp46 #include "platform/graphics/GraphicsLayer.h"
62 using blink::GraphicsLayer;
213 void PinchViewport::attachToLayerTree(GraphicsLayer* currentLayerTreeRoot, GraphicsLayerFactory* graphicsLayerFactory)
231 m_rootTransformLayer = GraphicsLayer::create(graphicsLayerFactory, this);
232 m_innerViewportContainerLayer = GraphicsLayer::create(graphicsLayerFactory, this);
233 m_pageScaleLayer = GraphicsLayer::create(graphicsLayerFactory, this);
234 m_innerViewportScrollLayer = GraphicsLayer::create(graphicsLayerFactory, this);
235 m_overlayScrollbarHorizontal = GraphicsLayer::create(graphicsLayerFactory, this);
236 m_overlayScrollbarVertical = GraphicsLayer::create(graphicsLayerFactory, this);
272 GraphicsLayer* scrollbarGraphicsLaye
410 notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) argument
414 paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsLayer.h56 class GraphicsLayer;
76 typedef Vector<GraphicsLayer*, 64> GraphicsLayerVector;
78 // GraphicsLayer is an abstraction for a rendering surface with backing store,
81 class PLATFORM_EXPORT GraphicsLayer : public GraphicsContextPainter, public WebCompositorAnimationDelegate, public WebLayerScrollClient, public WebLayerClient { class in namespace:blink
82 WTF_MAKE_NONCOPYABLE(GraphicsLayer); WTF_MAKE_FAST_ALLOCATED;
84 static PassOwnPtr<GraphicsLayer> create(GraphicsLayerFactory*, GraphicsLayerClient*);
86 virtual ~GraphicsLayer();
99 GraphicsLayer* parent() const { return m_parent; };
100 void setParent(GraphicsLayer*); // Internal use only.
102 const Vector<GraphicsLayer*>
[all...]
H A DGraphicsLayer.cpp28 #include "platform/graphics/GraphicsLayer.h"
71 typedef HashMap<const GraphicsLayer*, Vector<FloatRect> > RepaintMap;
78 PassOwnPtr<GraphicsLayer> GraphicsLayer::create(GraphicsLayerFactory* factory, GraphicsLayerClient* client)
83 GraphicsLayer::GraphicsLayer(GraphicsLayerClient* client) function in class:blink::GraphicsLayer
122 GraphicsLayer::~GraphicsLayer()
146 void GraphicsLayer::setParent(GraphicsLayer* laye
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorPageAgent.cpp1180 void InspectorPageAgent::didPaint(RenderObject*, const GraphicsLayer*, GraphicsContext* context, const LayoutRect& rect) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositedLayerMapping.cpp202 PassOwnPtr<GraphicsLayer> CompositedLayerMapping::createGraphicsLayer(CompositingReasons reasons)
208 OwnPtr<GraphicsLayer> graphicsLayer = GraphicsLayer::create(graphicsLayerFactory, this);
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()->mainGraphicsLayer();
565 Vector<GraphicsLayerPaintInfo>& layers, GraphicsLayer* squashingLayer, LayoutPoint* offsetFromTransformedAncestor, Vector<RenderLayer*>& layersNeedingPaintInvalidation)
728 // m_graphicsLayer is the corresponding GraphicsLayer for this RenderLayer and its non-compositing
921 m_scrollingContentsLayer->setOffsetFromRenderer(scrollingContentsOffset, GraphicsLayer::DontSetNeedsDisplay);
1034 GraphicsLayer* superLaye
2257 notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) argument
[all...]

Completed in 775 milliseconds