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

  /external/chromium_org/third_party/WebKit/Source/web/tests/
GraphicsLayerTest.cpp 29 #include "platform/scroll/ScrollableArea.h"
120 class FakeScrollableArea : public ScrollableArea {
130 virtual ScrollableArea* enclosingScrollableArea() const OVERRIDE { return 0; }
152 FakeScrollableArea scrollableArea;
153 m_graphicsLayer->setScrollableArea(&scrollableArea, false);
159 EXPECT_EQ(scrollPosition, WebPoint(scrollableArea.scrollPosition()));
  /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 434 // FIXME: This should probably return a ScrollableArea but a lot of internal methods are mistakenly exposed.
435 RenderLayerScrollableArea* scrollableArea() const { return m_scrollableArea.get(); }
567 // 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/page/
FocusController.cpp 682 static void contentAreaDidShowOrHide(ScrollableArea* scrollableArea, bool didShow)
685 scrollableArea->contentAreaDidShow();
687 scrollableArea->contentAreaDidHide();
708 const HashSet<ScrollableArea*>* scrollableAreas = frameView->scrollableAreas();
712 for (HashSet<ScrollableArea*>::const_iterator it = scrollableAreas->begin(), end = scrollableAreas->end(); it != end; ++it) {
713 ScrollableArea* scrollableArea = *it;
714 ASSERT(scrollableArea->scrollbarsCanBeActive());
716 contentAreaDidShowOrHide(scrollableArea, containingWindowIsVisible)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsLayer.h 65 class ScrollableArea;
287 void setScrollableArea(ScrollableArea*, bool isMainFrame);
288 ScrollableArea* scrollableArea() const { return m_scrollableArea; }
406 ScrollableArea* m_scrollableArea;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXObject.cpp 731 ScrollableArea* scrollableArea;
732 for (scrollableArea = 0;
733 scrollParent && !(scrollableArea = scrollParent->getScrollableAreaIfScrollable());
735 if (!scrollableArea)
739 IntPoint scrollPosition = scrollableArea->scrollPosition();
740 IntRect scrollVisibleRect = scrollableArea->visibleContentRect();
781 ScrollableArea* scrollableArea = outer->getScrollableAreaIfScrollable();
785 IntPoint scrollPosition = scrollableArea->scrollPosition()
    [all...]
AXRenderObject.cpp 248 ScrollableArea* AXRenderObject::getScrollableAreaIfScrollable() const
261 return box->scrollableArea();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 77 WebLayer* ScrollingCoordinator::scrollingWebLayerForScrollableArea(ScrollableArea* scrollableArea)
79 GraphicsLayer* graphicsLayer = scrollLayerForScrollableArea(scrollableArea);
213 void ScrollingCoordinator::willDestroyScrollableArea(ScrollableArea* scrollableArea)
215 removeWebScrollbarLayer(scrollableArea, HorizontalScrollbar);
216 removeWebScrollbarLayer(scrollableArea, VerticalScrollbar);
219 void ScrollingCoordinator::removeWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation)
222 if (OwnPtr<WebScrollbarLayer> scrollbarLayer = scrollbars.take(scrollableArea))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 203 ScrollableArea::setVerticalScrollElasticity(ScrollElasticityAllowed);
204 ScrollableArea::setHorizontalScrollElasticity(ScrollElasticityAllowed);
    [all...]

Completed in 211 milliseconds