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"
127 class FakeScrollableArea : public ScrollableArea {
158 FakeScrollableArea scrollableArea;
159 m_graphicsLayer->setScrollableArea(&scrollableArea, false);
165 EXPECT_EQ(scrollPosition, WebPoint(scrollableArea.scrollPosition()));
GraphicsLayer.h 65 class ScrollableArea;
245 void setScrollableArea(ScrollableArea*, bool isMainFrame);
246 ScrollableArea* scrollableArea() const { return m_scrollableArea; }
364 ScrollableArea* m_scrollableArea;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerModelObject.cpp 69 ScrollableArea* RenderLayerModelObject::scrollableArea() const
71 return m_layer ? m_layer->scrollableArea() : 0;
RenderLayer.h 414 // FIXME: This should probably return a ScrollableArea but a lot of internal methods are mistakenly exposed.
415 RenderLayerScrollableArea* scrollableArea() const { return m_scrollableArea.get(); }
593 // FIXME: We could lazily allocate our ScrollableArea based on style properties ('overflow', ...)
    [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);
101 // Called by the ScrollableArea when the scroll offset changes.
105 ScrollableArea* scrollableArea() const { return m_scrollableArea; }
154 Scrollbar(ScrollableArea*, ScrollbarOrientation, ScrollbarControlSize, ScrollbarTheme* = 0);
167 ScrollableArea* m_scrollableArea;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObject.cpp 723 ScrollableArea* scrollableArea;
724 for (scrollableArea = 0;
725 scrollParent && !(scrollableArea = scrollParent->getScrollableAreaIfScrollable());
727 if (!scrollableArea)
731 IntPoint scrollPosition = scrollableArea->scrollPosition();
732 IntRect scrollVisibleRect = scrollableArea->visibleContentRect();
773 ScrollableArea* scrollableArea = outer->getScrollableAreaIfScrollable();
777 IntPoint scrollPosition = scrollableArea->scrollPosition()
    [all...]
AXRenderObject.cpp 238 ScrollableArea* AXRenderObject::getScrollableAreaIfScrollable() const
251 return box->scrollableArea();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 233 void ScrollingCoordinator::willDestroyScrollableArea(ScrollableArea* scrollableArea)
235 removeWebScrollbarLayer(scrollableArea, HorizontalScrollbar);
236 removeWebScrollbarLayer(scrollableArea, VerticalScrollbar);
239 void ScrollingCoordinator::removeWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation)
242 if (OwnPtr<WebScrollbarLayer> scrollbarLayer = scrollbars.take(scrollableArea))
288 WebScrollbarLayer* ScrollingCoordinator::addWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, PassOwnPtr<blink::WebScrollbarLayer> scrollbarLayer)
291 return scrollbars.add(scrollableArea, scrollbarLayer).storedValue->value.get()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 141 ScrollableArea::setVerticalScrollElasticity(ScrollElasticityAllowed);
142 ScrollableArea::setHorizontalScrollElasticity(ScrollElasticityAllowed);
    [all...]

Completed in 333 milliseconds