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

  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollableArea.cpp 35 #include "core/platform/ScrollAnimator.h"
87 ScrollAnimator* ScrollableArea::scrollAnimator() const
90 m_scrollAnimator = ScrollAnimator::create(const_cast<ScrollableArea*>(this));
135 return scrollAnimator()->scroll(orientation, granularity, step, multiplier);
140 scrollAnimator()->scrollToOffsetWithoutAnimation(offset);
146 scrollToOffsetWithoutAnimation(FloatPoint(offset, scrollAnimator()->currentPosition().y()));
148 scrollToOffsetWithoutAnimation(FloatPoint(scrollAnimator()->currentPosition().x(), offset));
154 scrollAnimator()->setCurrentPosition(position);
189 scrollAnimator()->notifyContentAreaScrolled(scrollPosition() - oldPosition)
    [all...]
ScrollableArea.h 39 class ScrollAnimator;
98 // This getter will create a ScrollAnimator if it doesn't already exist.
99 ScrollAnimator* scrollAnimator() const;
101 // This getter will return null if the ScrollAnimator hasn't been created yet.
102 ScrollAnimator* existingScrollAnimator() const { return m_scrollAnimator.get(); }
214 // NOTE: Only called from the ScrollAnimator.
215 friend class ScrollAnimator;
227 mutable OwnPtr<ScrollAnimator> m_scrollAnimator;
Scrollbar.cpp 32 #include "core/platform/ScrollAnimator.h"
278 FloatPoint currentPosition = m_scrollableArea->scrollAnimator()->currentPosition();
530 return m_scrollableArea->scrollAnimator()->shouldScrollbarParticipateInHitTesting(this);
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ScrollAnimatorMac.mm 94 - (id)initWithScrollAnimator:(WebCore::ScrollAnimatorMac*)scrollAnimator;
109 - (id)initWithScrollAnimator:(WebCore::ScrollAnimatorMac*)scrollAnimator
115 _animator = scrollAnimator;
275 _scrollableArea->scrollAnimator()->contentAreaWillPaint();
292 static_cast<ScrollAnimatorMac*>(_scrollableArea->scrollAnimator())->updateScrollerStyle();
427 - (ScrollAnimatorMac*)scrollAnimator
429 return static_cast<ScrollAnimatorMac*>(_scrollbar->scrollableArea()->scrollAnimator());
456 bool mustAnimate = [self scrollAnimator]->haveScrolledSincePageLoad();
458 if ([self scrollAnimator]->scrollbarPaintTimerIsActive() && !mustAnimate)
462 [self scrollAnimator]->startScrollbarPaintTimer()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp 70 #include "core/platform/ScrollAnimator.h"
402 m_scrollbarGroup->scrollAnimator()->contentsResized();
679 m_scrollbarGroup->scrollAnimator()->mouseMovedInContentArea();
681 m_scrollbarGroup->scrollAnimator()->mouseEnteredContentArea();
683 m_scrollbarGroup->scrollAnimator()->mouseExitedContentArea();
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameView.cpp 57 #include "core/platform/ScrollAnimator.h"
334 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
335 scrollAnimator->cancelAnimations();
    [all...]
EventHandler.cpp 78 #include "core/platform/ScrollAnimator.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 39 #include "core/platform/ScrollAnimator.h"
674 frameView->scrollAnimator()->handleWheelEventPhase(phase);
  /external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/
calendarPicker.js     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayer.cpp 72 #include "core/platform/ScrollAnimator.h"
191 scrollAnimator()->setCurrentPosition(FloatPoint(m_scrollOffset.width(), m_scrollOffset.height()));
    [all...]

Completed in 103 milliseconds