HomeSort by relevance Sort by last modified time
    Searched defs:scrollableArea (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayerTest.cpp 29 #include "platform/scroll/ScrollableArea.h"
126 class FakeScrollableArea : public ScrollableArea {
157 FakeScrollableArea scrollableArea;
158 m_graphicsLayer->setScrollableArea(&scrollableArea, false);
164 EXPECT_EQ(scrollPosition, WebPoint(scrollableArea.scrollPosition()));
GraphicsLayer.h 61 class ScrollableArea;
227 void setScrollableArea(ScrollableArea*, bool isMainFrame);
228 ScrollableArea* scrollableArea() const { return m_scrollableArea; }
341 ScrollableArea* m_scrollableArea;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerModelObject.cpp 68 ScrollableArea* RenderLayerModelObject::scrollableArea() const
70 return m_layer ? m_layer->scrollableArea() : 0;
RenderLayer.h 381 // FIXME: This should probably return a ScrollableArea but a lot of internal methods are mistakenly exposed.
382 RenderLayerScrollableArea* scrollableArea() const { return m_scrollableArea.get(); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollAnimator.h 45 class ScrollableArea;
51 static PassOwnPtr<ScrollAnimator> create(ScrollableArea*);
63 ScrollableArea* scrollableArea() const { return m_scrollableArea; }
105 explicit ScrollAnimator(ScrollableArea*);
109 ScrollableArea* m_scrollableArea;
Scrollbar.h 42 class ScrollableArea;
50 static PassRefPtr<Scrollbar> create(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize);
100 // Called by the ScrollableArea when the scroll offset changes.
104 ScrollableArea* scrollableArea() const { return m_scrollableArea; }
153 Scrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, ScrollbarTheme* = 0);
166 ScrollableArea* m_scrollableArea;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObject.cpp 724 ScrollableArea* scrollableArea = 0;
726 scrollableArea = scrollParent->getScrollableAreaIfScrollable();
727 if (scrollableArea)
731 if (!scrollableArea)
735 IntPoint scrollPosition = scrollableArea->scrollPosition();
736 IntRect scrollVisibleRect = scrollableArea->visibleContentRect();
777 ScrollableArea* scrollableArea = outer->getScrollableAreaIfScrollable();
781 IntPoint scrollPosition = scrollableArea->scrollPosition()
    [all...]
AXRenderObject.cpp 240 ScrollableArea* AXRenderObject::getScrollableAreaIfScrollable() const
253 return box->scrollableArea();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 225 void ScrollingCoordinator::willDestroyScrollableArea(ScrollableArea* scrollableArea)
227 removeWebScrollbarLayer(scrollableArea, HorizontalScrollbar);
228 removeWebScrollbarLayer(scrollableArea, VerticalScrollbar);
231 void ScrollingCoordinator::removeWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation)
234 if (OwnPtr<WebScrollbarLayer> scrollbarLayer = scrollbars.take(scrollableArea))
280 WebScrollbarLayer* ScrollingCoordinator::addWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, PassOwnPtr<blink::WebScrollbarLayer> scrollbarLayer)
283 return scrollbars.add(scrollableArea, scrollbarLayer).storedValue->value.get()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 132 ScrollableArea::setVerticalScrollElasticity(ScrollElasticityAllowed);
133 ScrollableArea::setHorizontalScrollElasticity(ScrollElasticityAllowed);
    [all...]

Completed in 401 milliseconds