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;
81 virtual WebScrollbarLayer* createScrollbarLayer(WebScrollbar*, WebScrollbarThemePainter, WebScrollbarThemeGeometry*) { return 0; }
83 virtual WebScrollbarLayer* createSolidColorScrollbarLayer(WebScrollbar::Orientation, int thumbThickness, int trackStart, bool isLeftSideVerticalScrollbar) { return 0; }
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.h 37 class WebScrollbarLayer;
95 PassOwnPtr<blink::WebScrollbarLayer> createSolidColorScrollbarLayer(ScrollbarOrientation, int thumbThickness, int trackStart, bool isLeftSideVerticalScrollbar);
143 blink::WebScrollbarLayer* addWebScrollbarLayer(ScrollableArea*, ScrollbarOrientation, PassOwnPtr<blink::WebScrollbarLayer>);
144 blink::WebScrollbarLayer* getWebScrollbarLayer(ScrollableArea*, ScrollbarOrientation);
149 typedef HashMap<ScrollableArea*, OwnPtr<blink::WebScrollbarLayer> > ScrollbarMap;
ScrollingCoordinator.cpp 59 #include "public/platform/WebScrollbarLayer.h"
67 using blink::WebScrollbarLayer;
242 if (OwnPtr<WebScrollbarLayer> scrollbarLayer = scrollbars.take(scrollableArea))
246 static PassOwnPtr<WebScrollbarLayer> createScrollbarLayer(Scrollbar* scrollbar)
252 OwnPtr<WebScrollbarLayer> scrollbarLayer = adoptPtr(blink::Platform::current()->compositorSupport()->createScrollbarLayer(new blink::WebScrollbarImpl(scrollbar), painter, geometry.leakPtr()));
257 PassOwnPtr<WebScrollbarLayer> ScrollingCoordinator::createSolidColorScrollbarLayer(ScrollbarOrientation orientation, int thumbThickness, int trackStart, bool isLeftSideVerticalScrollbar)
260 OwnPtr<WebScrollbarLayer> scrollbarLayer = adoptPtr(blink::Platform::current()->compositorSupport()->createSolidColorScrollbarLayer(webOrientation, thumbThickness, trackStart, isLeftSideVerticalScrollbar));
273 static void setupScrollbarLayer(GraphicsLayer* scrollbarGraphicsLayer, WebScrollbarLayer* scrollbarLayer, WebLayer* scrollLayer, WebLayer* containerLayer)
288 WebScrollbarLayer* ScrollingCoordinator::addWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, PassOwnPtr<blink::WebScrollbarLayer> scrollbarLayer
    [all...]
  /external/chromium_org/content/renderer/compositor_bindings/
web_compositor_support_impl.cc 40 using blink::WebScrollbarLayer;
84 WebScrollbarLayer* WebCompositorSupportImpl::createScrollbarLayer(
91 WebScrollbarLayer* WebCompositorSupportImpl::createSolidColorScrollbarLayer(
web_scrollbar_layer_impl.h 11 #include "third_party/WebKit/public/platform/WebScrollbarLayer.h"
22 class WebScrollbarLayerImpl : public blink::WebScrollbarLayer {
35 // blink::WebScrollbarLayer implementation.
web_compositor_support_impl.h 36 virtual blink::WebScrollbarLayer* createScrollbarLayer(
40 virtual blink::WebScrollbarLayer* createSolidColorScrollbarLayer(
  /external/chromium_org/third_party/WebKit/Source/core/frame/
PinchViewport.h 46 class WebScrollbarLayer;
154 OwnPtr<blink::WebScrollbarLayer> m_webOverlayScrollbarHorizontal;
155 OwnPtr<blink::WebScrollbarLayer> m_webOverlayScrollbarVertical;
PinchViewport.cpp 54 #include "public/platform/WebScrollbarLayer.h"
59 using blink::WebScrollbarLayer;
284 OwnPtr<WebScrollbarLayer>& webScrollbarLayer = isHorizontal ?
289 if (!webScrollbarLayer) {
293 webScrollbarLayer = coordinator->createSolidColorScrollbarLayer(webcoreOrientation, overlayScrollbarThickness, 0, false);
295 webScrollbarLayer->setClipLayer(m_innerViewportContainerLayer->platformLayer());
296 scrollbarGraphicsLayer->setContentsToPlatformLayer(webScrollbarLayer->layer());

Completed in 735 milliseconds