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/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...]
RenderLayerBackingTest.cpp 124 renderer->layer()->backing()->graphicsLayer()->backgroundColor());
128 // RenderLayerBacking::graphicsLayer's background color is unset if SolidColorLayer is created.
129 EXPECT_EQ(Color(), renderer->layer()->backing()->graphicsLayer()->backgroundColor());
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/inspector/
InspectorLayerTreeAgent.cpp 56 static PassRefPtr<TypeBuilder::LayerTree::Layer> buildObjectForLayer(GraphicsLayer* graphicsLayer, int nodeId, bool forceRoot)
59 .setLayerId(String::number(graphicsLayer->platformLayer()->id()))
61 .setOffsetX(graphicsLayer->position().x())
62 .setOffsetY(graphicsLayer->position().y())
63 .setWidth(graphicsLayer->size().width())
64 .setHeight(graphicsLayer->size().height())
65 .setPaintCount(graphicsLayer->repaintCount());
69 if (graphicsLayer->parent() && !forceRoot)
70 layerObject->setParentLayerId(String::number(graphicsLayer->parent()->platformLayer()->id()))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollableArea.cpp 38 #include "core/platform/graphics/GraphicsLayer.h"
337 if (GraphicsLayer* graphicsLayer = layerForHorizontalScrollbar()) {
338 graphicsLayer->setNeedsDisplay();
339 graphicsLayer->setContentsNeedsDisplay();
343 if (GraphicsLayer* graphicsLayer = layerForVerticalScrollbar()) {
344 graphicsLayer->setNeedsDisplay();
345 graphicsLayer->setContentsNeedsDisplay();
354 if (GraphicsLayer* graphicsLayer = layerForScrollCorner())
    [all...]
ScrollView.cpp 34 #include "core/platform/graphics/GraphicsLayer.h"
764 static void positionScrollbarLayer(GraphicsLayer* graphicsLayer, Scrollbar* scrollbar)
766 if (!graphicsLayer || !scrollbar)
770 graphicsLayer->setPosition(scrollbarRect.location());
772 if (scrollbarRect.size() == graphicsLayer->size())
775 graphicsLayer->setSize(scrollbarRect.size());
777 if (graphicsLayer->hasContentsLayer()) {
778 graphicsLayer->setContentsRect(IntRect(0, 0, scrollbarRect.width(), scrollbarRect.height()));
782 graphicsLayer->setDrawsContent(true)
    [all...]
  /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;
PageOverlayList.cpp 130 size_t PageOverlayList::findGraphicsLayer(WebCore::GraphicsLayer* layer)
133 if (m_pageOverlays[i]->graphicsLayer() == layer)
LinkHighlight.cpp 130 GraphicsLayer* newGraphicsLayer = renderLayer->backing()->graphicsLayer();
ChromeClientImpl.cpp 93 #include "core/platform/graphics/GraphicsLayer.h"
831 void ChromeClientImpl::attachRootGraphicsLayer(Frame* frame, GraphicsLayer* graphicsLayer)
833 m_webView->setRootGraphicsLayer(graphicsLayer);
    [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...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
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...]
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...]
RenderTreeAsText.cpp 584 ts << " (composited, bounds=" << l.backing()->compositedBounds() << ", drawsContent=" << l.backing()->graphicsLayer()->drawsContent() << ", paints into ancestor=" << l.backing()->paintsIntoCompositedAncestor() << ")";
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameView.cpp 727 GraphicsLayer* FrameView::layerForScrolling() const
735 GraphicsLayer* FrameView::layerForHorizontalScrollbar() const
743 GraphicsLayer* FrameView::layerForVerticalScrollbar() const
751 GraphicsLayer* FrameView::layerForScrollCorner() const
760 GraphicsLayer* FrameView::layerForOverhangAreas() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 106 #include "core/platform/graphics/GraphicsLayer.h"
    [all...]

Completed in 561 milliseconds