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

  /external/chromium_org/third_party/WebKit/Source/web/
PinchViewports.cpp 140 GraphicsLayer* scrollbarGraphicsLayer = isHorizontal ?
154 scrollbarGraphicsLayer->setContentsToPlatformLayer(webScrollbarLayer->layer());
155 scrollbarGraphicsLayer->setDrawsContent(false);
163 scrollbarGraphicsLayer->setPosition(WebCore::IntPoint(xPosition, yPosition));
164 scrollbarGraphicsLayer->setSize(WebCore::IntSize(width, height));
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 245 static void detachScrollbarLayer(GraphicsLayer* scrollbarGraphicsLayer)
247 ASSERT(scrollbarGraphicsLayer);
249 scrollbarGraphicsLayer->setContentsToPlatformLayer(0);
250 scrollbarGraphicsLayer->setDrawsContent(true);
253 static void setupScrollbarLayer(GraphicsLayer* scrollbarGraphicsLayer, WebScrollbarLayer* scrollbarLayer, WebLayer* scrollLayer)
255 ASSERT(scrollbarGraphicsLayer);
259 detachScrollbarLayer(scrollbarGraphicsLayer);
263 scrollbarGraphicsLayer->setContentsToPlatformLayer(scrollbarLayer->layer());
264 scrollbarGraphicsLayer->setDrawsContent(false);
299 GraphicsLayer* scrollbarGraphicsLayer = orientation == HorizontalScrollbar ? horizontalScrollbarLayerForScrollableArea(scrollableArea) : (…)
    [all...]

Completed in 342 milliseconds