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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageLayerChromiumTest.cpp 28 #include "platform/graphics/GraphicsLayer.h"
41 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE { }
42 virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip) OVERRIDE { }
43 virtual String debugName(const GraphicsLayer*) OVERRIDE { return String(); }
102 class GraphicsLayerForTesting : public GraphicsLayer {
105 : GraphicsLayer(client) { };
107 virtual blink::WebLayer* contentsLayer() const { return GraphicsLayer::contentsLayer(); }
113 OwnPtr<GraphicsLayerForTesting> graphicsLayer = adoptPtr(new GraphicsLayerForTesting(&client));
114 ASSERT_TRUE(graphicsLayer.get());
121 ASSERT_FALSE(graphicsLayer->contentsLayer())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorLayerTreeAgent.cpp 58 inline String idForLayer(const GraphicsLayer* graphicsLayer)
60 return String::number(graphicsLayer->platformLayer()->id());
76 static PassRefPtr<TypeBuilder::Array<TypeBuilder::LayerTree::ScrollRect> > buildScrollRectsForLayer(GraphicsLayer* graphicsLayer)
79 blink::WebLayer* webLayer = graphicsLayer->platformLayer();
93 static PassRefPtr<TypeBuilder::LayerTree::Layer> buildObjectForLayer(GraphicsLayer* graphicsLayer, int nodeId)
95 blink::WebLayer* webLayer = graphicsLayer->platformLayer();
97 .setLayerId(idForLayer(graphicsLayer))
    [all...]
InspectorTraceEvents.cpp 22 #include "platform/graphics/GraphicsLayer.h"
247 PassRefPtr<TraceEvent::ConvertableToTraceFormat> InspectorPaintEvent::data(RenderObject* renderer, const LayoutRect& clipRect, const GraphicsLayer* graphicsLayer)
256 int graphicsLayerId = graphicsLayer ? graphicsLayer->platformLayer()->id() : 0;
InspectorTimelineAgent.cpp 60 #include "platform/graphics/GraphicsLayer.h"
550 void InspectorTimelineAgent::willPaint(RenderObject* renderer, const GraphicsLayer* graphicsLayer)
557 if (graphicsLayer) {
558 int layerIdentifier = graphicsLayer->platformLayer()->id();
571 void InspectorTimelineAgent::didPaint(RenderObject* renderer, const GraphicsLayer* graphicsLayer, GraphicsContext*, const LayoutRect& clipRect)
577 int graphicsLayerId = graphicsLayer ? graphicsLayer->platformLayer()->id() : 0;
580 if (m_mayEmitFirstPaint && !graphicsLayer) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PageOverlay.h 37 class GraphicsLayer;
63 WebCore::GraphicsLayer* graphicsLayer() const { return m_layer.get(); }
72 OwnPtr<WebCore::GraphicsLayer> m_layer;
PageOverlay.cpp 35 #include "platform/graphics/GraphicsLayer.h"
76 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE { }
78 virtual void paintContents(const GraphicsLayer*, GraphicsContext& gc, GraphicsLayerPaintingPhase, const IntRect& inClip)
87 virtual String debugName(const GraphicsLayer* graphicsLayer) OVERRIDE
120 m_layer = GraphicsLayer::create(m_viewImpl->graphicsLayerFactory(), m_layerClient.get());
PageOverlayList.cpp 130 size_t PageOverlayList::findGraphicsLayer(WebCore::GraphicsLayer* layer)
133 if (m_pageOverlays[i]->graphicsLayer() == layer)
WebPagePopupImpl.cpp 151 virtual void attachRootGraphicsLayer(GraphicsLayer* graphicsLayer) OVERRIDE
153 m_popup->setRootGraphicsLayer(graphicsLayer);
244 void WebPagePopupImpl::setRootGraphicsLayer(GraphicsLayer* layer)
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollableArea.cpp 35 #include "platform/graphics/GraphicsLayer.h"
106 GraphicsLayer* ScrollableArea::layerForContainer() const
356 if (GraphicsLayer* graphicsLayer = layerForHorizontalScrollbar()) {
357 graphicsLayer->setNeedsDisplay();
358 graphicsLayer->setContentsNeedsDisplay();
362 if (GraphicsLayer* graphicsLayer = layerForVerticalScrollbar()) {
363 graphicsLayer->setNeedsDisplay();
364 graphicsLayer->setContentsNeedsDisplay()
    [all...]
ScrollView.cpp 30 #include "platform/graphics/GraphicsLayer.h"
719 static void positionScrollbarLayer(GraphicsLayer* graphicsLayer, Scrollbar* scrollbar)
721 if (!graphicsLayer || !scrollbar)
725 graphicsLayer->setPosition(scrollbarRect.location());
727 if (scrollbarRect.size() == graphicsLayer->size())
730 graphicsLayer->setSize(scrollbarRect.size());
732 if (graphicsLayer->hasContentsLayer()) {
733 graphicsLayer->setContentsRect(IntRect(0, 0, scrollbarRect.width(), scrollbarRect.height()));
737 graphicsLayer->setDrawsContent(true)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
RenderLayerCompositor.cpp 55 #include "platform/graphics/GraphicsLayer.h"
272 GraphicsLayer* backgroundLayer = fixedRootBackgroundLayer();
279 GraphicsLayer* videoLayer = video->compositedLayerMapping()->mainGraphicsLayer();
291 if (GraphicsLayer* backgroundLayer = fixedRootBackgroundLayer())
421 // If we're removing the compositedLayerMapping from a reflection, clear the source GraphicsLayer's pointer to
422 // its replica GraphicsLayer. In practice this should never happen because reflectee and reflection
611 if (GraphicsLayer* backgroundLayer = fixedRootBackgroundLayer())
632 GraphicsLayer* rootLayer = m_rootContentLayer.get();
671 GraphicsLayer* hostingLayer = compositedLayerMapping->parentForSublayers();
672 GraphicsLayer* rootLayer = innerCompositor->rootGraphicsLayer()
    [all...]
CompositedLayerMapping.cpp 206 PassOwnPtr<GraphicsLayer> CompositedLayerMapping::createGraphicsLayer(CompositingReasons reasons)
212 OwnPtr<GraphicsLayer> graphicsLayer = GraphicsLayer::create(graphicsLayerFactory, this);
214 graphicsLayer->setCompositingReasons(reasons);
216 graphicsLayer->setOwnerNodeId(InspectorNodeIds::idForNode(owningNode));
218 return graphicsLayer.release();
421 // that's plugged into another GraphicsLayer that is part of the hierarchy.
422 // It has no parent or child GraphicsLayer. For that reason, we process it
450 GraphicsLayer* reflectionLayer = m_owningLayer.reflectionInfo()->reflectionLayer()->compositedLayerMapping()->ma (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollingCoordinatorChromiumTest.cpp 32 #include "platform/graphics/GraphicsLayer.h"
141 GraphicsLayer* graphicsLayer = compositedLayerMapping->mainGraphicsLayer();
142 if (!graphicsLayer)
144 return graphicsLayer->platformLayer();
296 GraphicsLayer* graphicsLayer = compositedLayerMapping->scrollingContentsLayer();
297 ASSERT_EQ(box->layer()->scrollableArea(), graphicsLayer->scrollableArea());
336 GraphicsLayer* graphicsLayer = compositedLayerMapping->scrollingContentsLayer()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
PinchViewport.cpp 46 #include "platform/graphics/GraphicsLayer.h"
61 using WebCore::GraphicsLayer;
212 void PinchViewport::attachToLayerTree(GraphicsLayer* currentLayerTreeRoot, GraphicsLayerFactory* graphicsLayerFactory)
230 m_rootTransformLayer = GraphicsLayer::create(graphicsLayerFactory, this);
231 m_innerViewportContainerLayer = GraphicsLayer::create(graphicsLayerFactory, this);
232 m_pageScaleLayer = GraphicsLayer::create(graphicsLayerFactory, this);
233 m_innerViewportScrollLayer = GraphicsLayer::create(graphicsLayerFactory, this);
234 m_overlayScrollbarHorizontal = GraphicsLayer::create(graphicsLayerFactory, this);
235 m_overlayScrollbarVertical = GraphicsLayer::create(graphicsLayerFactory, this);
273 // if (GraphicsLayer* scrollbar = m_frameHost->compositor()->layerForHorizontalScrollbar()
    [all...]
FrameView.cpp 645 GraphicsLayer* FrameView::layerForScrolling() const
653 GraphicsLayer* FrameView::layerForHorizontalScrollbar() const
661 GraphicsLayer* FrameView::layerForVerticalScrollbar() const
669 GraphicsLayer* FrameView::layerForScrollCorner() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 50 #include "platform/graphics/GraphicsLayer.h"
72 WebLayer* toWebLayer(WebCore::GraphicsLayer* layer)
188 void ScrollingCoordinator::setLayerIsContainerForFixedPositionLayers(GraphicsLayer* layer, bool enable)
194 static void clearPositionConstraintExceptForLayer(GraphicsLayer* layer, GraphicsLayer* except)
213 // Composited layers that inherit a fixed position state will be positioned with respect to the nearest compositedLayerMapping's GraphicsLayer.
223 GraphicsLayer* mainLayer = compositedLayerMapping->localRootForOwningLayer();
243 GraphicsLayer::unregisterContentsLayer(scrollbarLayer->layer());
253 GraphicsLayer::registerContentsLayer(scrollbarLayer->layer());
261 GraphicsLayer::registerContentsLayer(scrollbarLayer->layer())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 125 #include "platform/graphics/GraphicsLayer.h"
    [all...]

Completed in 280 milliseconds