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

  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollbarLayer.h 39 class WebScrollbarLayer {
41 virtual ~WebScrollbarLayer() { }
WebCompositorSupport.h 50 class WebScrollbarLayer;
80 virtual WebScrollbarLayer* createScrollbarLayer(WebScrollbar*, WebScrollbarThemePainter, WebScrollbarThemeGeometry*) { return 0; }
82 virtual WebScrollbarLayer* createSolidColorScrollbarLayer(WebScrollbar::Orientation, int thumbThickness, bool isLeftSideVerticalScrollbar) { return 0; }
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.h 37 class WebScrollbarLayer;
98 PassOwnPtr<blink::WebScrollbarLayer> createSolidColorScrollbarLayer(ScrollbarOrientation, int thumbThickness, bool isLeftSideVerticalScrollbar);
155 blink::WebScrollbarLayer* addWebScrollbarLayer(ScrollableArea*, ScrollbarOrientation, PassOwnPtr<blink::WebScrollbarLayer>);
156 blink::WebScrollbarLayer* getWebScrollbarLayer(ScrollableArea*, ScrollbarOrientation);
161 typedef HashMap<ScrollableArea*, OwnPtr<blink::WebScrollbarLayer> > ScrollbarMap;
ScrollingCoordinator.cpp 58 #include "public/platform/WebScrollbarLayer.h"
66 using blink::WebScrollbarLayer;
222 if (OwnPtr<WebScrollbarLayer> scrollbarLayer = scrollbars.take(scrollableArea))
226 static PassOwnPtr<WebScrollbarLayer> createScrollbarLayer(Scrollbar* scrollbar)
232 OwnPtr<WebScrollbarLayer> scrollbarLayer = adoptPtr(blink::Platform::current()->compositorSupport()->createScrollbarLayer(new blink::WebScrollbarImpl(scrollbar), painter, geometry.leakPtr()));
237 PassOwnPtr<WebScrollbarLayer> ScrollingCoordinator::createSolidColorScrollbarLayer(ScrollbarOrientation orientation, int thumbThickness, bool isLeftSideVerticalScrollbar)
240 OwnPtr<WebScrollbarLayer> scrollbarLayer = adoptPtr(blink::Platform::current()->compositorSupport()->createSolidColorScrollbarLayer(webOrientation, thumbThickness, isLeftSideVerticalScrollbar));
253 static void setupScrollbarLayer(GraphicsLayer* scrollbarGraphicsLayer, WebScrollbarLayer* scrollbarLayer, WebLayer* scrollLayer)
267 WebScrollbarLayer* ScrollingCoordinator::addWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, PassOwnPtr<blink::WebScrollbarLayer> scrollbarLayer
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PinchViewports.h 51 class WebScrollbarLayer;
86 OwnPtr<WebScrollbarLayer> m_webOverlayScrollbarHorizontal;
87 OwnPtr<WebScrollbarLayer> m_webOverlayScrollbarVertical;
PinchViewports.cpp 47 #include "public/platform/WebScrollbarLayer.h"
142 OwnPtr<WebScrollbarLayer>& webScrollbarLayer = isHorizontal ?
147 if (!webScrollbarLayer) {
151 webScrollbarLayer = coordinator->createSolidColorScrollbarLayer(webcoreOrientation, overlayScrollbarThickness, false);
153 webScrollbarLayer->setScrollLayer(m_innerViewportScrollLayer->platformLayer());
154 scrollbarGraphicsLayer->setContentsToPlatformLayer(webScrollbarLayer->layer());
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_compositor_support_impl.cc 40 using blink::WebScrollbarLayer;
79 WebScrollbarLayer* WebCompositorSupportImpl::createScrollbarLayer(
86 WebScrollbarLayer* WebCompositorSupportImpl::createSolidColorScrollbarLayer(
web_scrollbar_layer_impl.h 10 #include "third_party/WebKit/public/platform/WebScrollbarLayer.h"
22 class WebScrollbarLayerImpl : public blink::WebScrollbarLayer {
34 // blink::WebScrollbarLayer implementation.
web_compositor_support_impl.h 33 virtual blink::WebScrollbarLayer* createScrollbarLayer(
37 virtual blink::WebScrollbarLayer* createSolidColorScrollbarLayer(

Completed in 1378 milliseconds