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/platform/scroll/
ScrollableArea.cpp 86 ScrollAnimator* ScrollableArea::scrollAnimator() const
89 m_scrollAnimator = ScrollAnimator::create(const_cast<ScrollableArea*>(this));
134 return scrollAnimator()->scroll(orientation, granularity, step, multiplier);
139 scrollAnimator()->scrollToOffsetWithoutAnimation(offset);
145 scrollToOffsetWithoutAnimation(FloatPoint(offset, scrollAnimator()->currentPosition().y()));
147 scrollToOffsetWithoutAnimation(FloatPoint(scrollAnimator()->currentPosition().x(), offset));
153 scrollAnimator()->setCurrentPosition(position);
188 scrollAnimator()->notifyContentAreaScrolled(scrollPosition() - oldPosition);
193 return scrollAnimator()->handleWheelEvent(wheelEvent)
    [all...]
ScrollableArea.h 30 #include "platform/scroll//ScrollAnimator.h"
42 class ScrollAnimator;
95 // This getter will create a ScrollAnimator if it doesn't already exist.
96 ScrollAnimator* scrollAnimator() const;
98 // This getter will return null if the ScrollAnimator hasn't been created yet.
99 ScrollAnimator* existingScrollAnimator() const { return m_scrollAnimator.get(); }
210 // NOTE: Only called from the ScrollAnimator.
211 friend class ScrollAnimator;
223 mutable OwnPtr<ScrollAnimator> m_scrollAnimator
    [all...]
Scrollbar.cpp 33 #include "platform/scroll/ScrollAnimator.h"
292 FloatPoint currentPosition = m_scrollableArea->scrollAnimator()->currentPosition();
546 return m_scrollableArea->scrollAnimator()->shouldScrollbarParticipateInHitTesting(this);
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollAnimatorMac.mm 93 - (id)initWithScrollAnimator:(WebCore::ScrollAnimatorMac*)scrollAnimator;
108 - (id)initWithScrollAnimator:(WebCore::ScrollAnimatorMac*)scrollAnimator
114 _animator = scrollAnimator;
267 _scrollableArea->scrollAnimator()->contentAreaWillPaint();
284 static_cast<ScrollAnimatorMac*>(_scrollableArea->scrollAnimator())->updateScrollerStyle();
419 - (ScrollAnimatorMac*)scrollAnimator
421 return static_cast<ScrollAnimatorMac*>(_scrollbar->scrollableArea()->scrollAnimator());
448 bool mustAnimate = [self scrollAnimator]->haveScrolledSincePageLoad();
450 if ([self scrollAnimator]->scrollbarPaintTimerIsActive() && !mustAnimate)
454 [self scrollAnimator]->startScrollbarPaintTimer()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp 76 #include "platform/scroll/ScrollAnimator.h"
410 m_scrollbarGroup->scrollAnimator()->contentsResized();
693 m_scrollbarGroup->scrollAnimator()->mouseMovedInContentArea();
695 m_scrollbarGroup->scrollAnimator()->mouseEnteredContentArea();
697 m_scrollbarGroup->scrollAnimator()->mouseExitedContentArea();
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp 78 #include "platform/scroll/ScrollAnimator.h"
336 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
337 scrollAnimator->cancelAnimations();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
ScrollingCoordinator.cpp 48 #include "platform/scroll/ScrollAnimator.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerScrollableArea.cpp 68 #include "platform/scroll/ScrollAnimator.h"
96 scrollAnimator()->setCurrentPosition(FloatPoint(m_scrollOffset.width(), m_scrollOffset.height()));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp 99 #include "platform/scroll/ScrollAnimator.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/resources/
calendarPicker.js     [all...]

Completed in 543 milliseconds