Home | History | Annotate | Download | only in scrolling

Lines Matching refs:ScrollingCoordinator

28 #include "core/page/scrolling/ScrollingCoordinator.h"
82 PassOwnPtr<ScrollingCoordinator> ScrollingCoordinator::create(Page* page)
84 return adoptPtr(new ScrollingCoordinator(page));
87 ScrollingCoordinator::ScrollingCoordinator(Page* page)
97 ScrollingCoordinator::~ScrollingCoordinator()
101 void ScrollingCoordinator::setShouldHandleScrollGestureOnMainThreadRegion(const Region& region)
114 void ScrollingCoordinator::notifyLayoutUpdated()
121 void ScrollingCoordinator::updateAfterCompositingChangeIfNeeded()
129 TRACE_EVENT0("input", "ScrollingCoordinator::updateAfterCompositingChangeIfNeeded");
179 void ScrollingCoordinator::setLayerIsContainerForFixedPositionLayers(GraphicsLayer* layer, bool enable)
210 void ScrollingCoordinator::updateLayerPositionConstraint(RenderLayer* layer)
225 void ScrollingCoordinator::willDestroyScrollableArea(ScrollableArea* scrollableArea)
231 void ScrollingCoordinator::removeWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation)
249 PassOwnPtr<WebScrollbarLayer> ScrollingCoordinator::createSolidColorScrollbarLayer(ScrollbarOrientation orientation, int thumbThickness, int trackStart, bool isLeftSideVerticalScrollbar)
280 WebScrollbarLayer* ScrollingCoordinator::addWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, PassOwnPtr<blink::WebScrollbarLayer> scrollbarLayer)
286 WebScrollbarLayer* ScrollingCoordinator::getWebScrollbarLayer(ScrollableArea* scrollableArea, ScrollbarOrientation orientation)
292 void ScrollingCoordinator::scrollableAreaScrollbarLayerDidChange(ScrollableArea* scrollableArea, ScrollbarOrientation orientation)
349 bool ScrollingCoordinator::scrollableAreaScrollLayerDidChange(ScrollableArea* scrollableArea)
481 TRACE_EVENT0("input", "ScrollingCoordinator::projectRectsToGraphicsLayerSpace");
516 void ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded()
518 TRACE_EVENT0("input", "ScrollingCoordinator::updateTouchEventTargetRectsIfNeeded");
528 void ScrollingCoordinator::reset()
547 void ScrollingCoordinator::setTouchEventTargetRects(LayerHitTestRects& layerRects)
549 TRACE_EVENT0("input", "ScrollingCoordinator::setTouchEventTargetRects");
582 void ScrollingCoordinator::touchEventTargetRectsDidChange()
600 void ScrollingCoordinator::updateScrollParentForGraphicsLayer(GraphicsLayer* child, RenderLayer* parent)
609 void ScrollingCoordinator::updateClipParentForGraphicsLayer(GraphicsLayer* child, RenderLayer* parent)
618 void ScrollingCoordinator::willDestroyRenderLayer(RenderLayer* layer)
623 void ScrollingCoordinator::updateHaveWheelEventHandlers()
636 void ScrollingCoordinator::updateHaveScrollEventHandlers()
652 void ScrollingCoordinator::setShouldUpdateScrollLayerPositionOnMainThread(MainThreadScrollingReasons reasons)
662 void ScrollingCoordinator::willBeDestroyed()
672 bool ScrollingCoordinator::coordinatesScrollingForFrameView(FrameView* frameView) const
691 Region ScrollingCoordinator::computeShouldHandleScrollGestureOnMainThreadRegion(const LocalFrame* frame, const IntPoint& frameLocation) const
818 void ScrollingCoordinator::computeTouchEventTargetRects(LayerHitTestRects& rects)
820 TRACE_EVENT0("input", "ScrollingCoordinator::computeTouchEventTargetRects");
830 void ScrollingCoordinator::frameViewHasSlowRepaintObjectsDidChange(FrameView* frameView)
841 void ScrollingCoordinator::frameViewFixedObjectsDidChange(FrameView* frameView)
852 bool ScrollingCoordinator::isForMainFrame(ScrollableArea* scrollableArea) const
857 void ScrollingCoordinator::frameViewRootLayerDidChange(FrameView* frameView)
871 void ScrollingCoordinator::handleWheelEventPhase(PlatformWheelEventPhase phase)
886 bool ScrollingCoordinator::hasVisibleSlowRepaintViewportConstrainedObjects(FrameView* frameView) const
921 MainThreadScrollingReasons ScrollingCoordinator::mainThreadScrollingReasons() const
952 String ScrollingCoordinator::mainThreadScrollingReasonsAsText(MainThreadScrollingReasons reasons)
956 if (reasons & ScrollingCoordinator::HasSlowRepaintObjects)
958 if (reasons & ScrollingCoordinator::HasViewportConstrainedObjectsWithoutSupportingFixedLayers)
960 if (reasons & ScrollingCoordinator::HasNonLayerViewportConstrainedObjects)
962 if (reasons & ScrollingCoordinator::ThreadedScrollingDisabled)
970 String ScrollingCoordinator::mainThreadScrollingReasonsAsText() const
976 bool ScrollingCoordinator::frameViewIsDirty() const