Searched refs:GraphicsLayer (Results 1 - 25 of 80) sorted by path

1234

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DRenderedPosition.h39 class GraphicsLayer;
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrame.cpp49 #include "platform/graphics/GraphicsLayer.h"
176 GraphicsLayer::unregisterContentsLayer(m_remotePlatformLayer);
179 GraphicsLayer::registerContentsLayer(layer);
H A DFrameView.cpp612 GraphicsLayer* FrameView::layerForScrolling() const
620 GraphicsLayer* FrameView::layerForHorizontalScrollbar() const
628 GraphicsLayer* FrameView::layerForVerticalScrollbar() const
636 GraphicsLayer* FrameView::layerForScrollCorner() const
1007 GraphicsLayer* graphicsLayer = layoutRoot->enclosingLayer()->compositedLayerMapping()->mainGraphicsLayer();
1112 GraphicsLayer* layer = renderView->layer()->compositedLayerMapping()->mainGraphicsLayer();
H A DFrameView.h339 virtual GraphicsLayer* layerForScrolling() const OVERRIDE;
340 virtual GraphicsLayer* layerForHorizontalScrollbar() const OVERRIDE;
341 virtual GraphicsLayer* layerForVerticalScrollbar() const OVERRIDE;
342 virtual GraphicsLayer* layerForScrollCorner() const OVERRIDE;
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...]
H A DPinchViewport.h53 class GraphicsLayer;
61 // offset is set through the GraphicsLayer <-> CC sync mechanisms. Its contents is the page's
69 void attachToLayerTree(GraphicsLayer*, GraphicsLayerFactory*);
70 GraphicsLayer* rootGraphicsLayer()
74 GraphicsLayer* containerLayer()
133 virtual GraphicsLayer* layerForContainer() const OVERRIDE;
134 virtual GraphicsLayer* layerForScrolling() const OVERRIDE;
135 virtual GraphicsLayer* layerForHorizontalScrollbar() const OVERRIDE;
136 virtual GraphicsLayer* layerForVerticalScrollbar() const OVERRIDE;
139 virtual void notifyAnimationStarted(const GraphicsLayer*, doubl
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMediaElement.cpp72 #include "platform/graphics/GraphicsLayer.h"
3957 GraphicsLayer::unregisterContentsLayer(m_webLayer);
3960 GraphicsLayer::registerContentsLayer(m_webLayer);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorController.cpp514 void InspectorController::willAddPageOverlay(const GraphicsLayer* layer)
520 void InspectorController::didRemovePageOverlay(const GraphicsLayer* layer)
H A DInspectorController.h47 class GraphicsLayer;
138 void willAddPageOverlay(const GraphicsLayer*);
139 void didRemovePageOverlay(const GraphicsLayer*);
H A DInspectorInstrumentation.h60 class GraphicsLayer;
H A DInspectorInstrumentation.idl254 void willPaint([Keep] RenderObject*, const GraphicsLayer*);
257 void didPaint([Keep] RenderObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&);
H A DInspectorLayerTreeAgent.cpp62 inline String idForLayer(const GraphicsLayer* graphicsLayer)
80 static PassRefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::ScrollRect> > buildScrollRectsForLayer(GraphicsLayer* graphicsLayer)
97 static PassRefPtr<TypeBuilder::LayerTree::Layer> buildObjectForLayer(GraphicsLayer* graphicsLayer, int nodeId)
111 GraphicsLayer* parent = graphicsLayer->parent();
201 void InspectorLayerTreeAgent::didPaint(RenderObject*, const GraphicsLayer* graphicsLayer, GraphicsContext*, const LayoutRect& rect)
232 GraphicsLayer* graphicsLayer = root->compositedLayerMapping()->childForSuperlayers();
247 void InspectorLayerTreeAgent::gatherGraphicsLayers(GraphicsLayer* root, HashMap<int, int>& layerIdToNodeIdMap, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >& layers)
253 if (GraphicsLayer* replica = root->replicaLayer())
271 static GraphicsLayer* findLayerById(GraphicsLayer* roo
[all...]
H A DInspectorLayerTreeAgent.h66 void willAddPageOverlay(const GraphicsLayer*);
67 void didRemovePageOverlay(const GraphicsLayer*);
71 void didPaint(RenderObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&);
93 GraphicsLayer* layerById(ErrorString*, const String& layerId);
98 void gatherGraphicsLayers(GraphicsLayer*, HashMap<int, int>& layerIdToNodeIdMap, RefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::Layer> >&);
H A DInspectorPageAgent.cpp1180 void InspectorPageAgent::didPaint(RenderObject*, const GraphicsLayer*, GraphicsContext* context, const LayoutRect& rect) argument
H A DInspectorPageAgent.h49 class GraphicsLayer;
144 void didPaint(RenderObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&);
H A DInspectorTimelineAgent.cpp61 #include "platform/graphics/GraphicsLayer.h"
596 void InspectorTimelineAgent::willPaint(RenderObject* renderer, const GraphicsLayer* graphicsLayer)
617 void InspectorTimelineAgent::didPaint(RenderObject* renderer, const GraphicsLayer* graphicsLayer, GraphicsContext*, const LayoutRect& clipRect)
H A DInspectorTimelineAgent.h66 class GraphicsLayer;
163 void willPaint(RenderObject*, const GraphicsLayer*);
164 void didPaint(RenderObject*, const GraphicsLayer*, GraphicsContext*, const LayoutRect&);
H A DInspectorTraceEvents.cpp25 #include "platform/graphics/GraphicsLayer.h"
304 PassRefPtr<TraceEvent::ConvertableToTraceFormat> InspectorPaintEvent::data(RenderObject* renderer, const LayoutRect& clipRect, const GraphicsLayer* graphicsLayer)
H A DInspectorTraceEvents.h19 class GraphicsLayer;
134 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(RenderObject*, const LayoutRect& clipRect, const GraphicsLayer*);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DEmptyClients.h154 virtual void attachRootGraphicsLayer(GraphicsLayer*) OVERRIDE { }
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DChromeClient.h54 class GraphicsLayer;
182 // Pass 0 as the GraphicsLayer to detatch the root layer.
183 virtual void attachRootGraphicsLayer(GraphicsLayer*) = 0;
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
H A DScrollingCoordinator.cpp51 #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
[all...]
H A DScrollingCoordinator.h45 class GraphicsLayer;
99 void setLayerIsContainerForFixedPositionLayers(GraphicsLayer*, bool);
104 void updateScrollParentForGraphicsLayer(GraphicsLayer* child, RenderLayer* parent);
105 void updateClipParentForGraphicsLayer(GraphicsLayer* child, RenderLayer* parent);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayer.cpp206 // GraphicsLayer::setContentsToPlatformLayer with the new platform
526 // FIXME: Eventually we are going to unify coordinates in GraphicsLayer space.
3120 // GraphicsLayer.
3233 GraphicsLayer* RenderLayer::graphicsLayerBacking() const
3245 GraphicsLayer* RenderLayer::graphicsLayerBackingForScrolling() const
H A DRenderLayer.h209 // GraphicsLayer backing, but is nevertheless the root for a call to the RenderLayer::paint*() methods.
303 GraphicsLayer* graphicsLayerBacking() const;
304 GraphicsLayer* graphicsLayerBackingForScrolling() const;
328 // Adjusts the given rect (in the coordinate space of the RenderObject) to the coordinate space of |paintInvalidationContainer|'s GraphicsLayer backing.
331 // Computes the bounding paint invalidation rect for |renderObject|, in the coordinate space of |paintInvalidationContainer|'s GraphicsLayer backing.

Completed in 1006 milliseconds

1234