Searched refs:useAnchor (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebLayerTreeView.h90 // If useAnchor is true, destination is a point on the screen that will remain fixed for the duration of the animation.
91 // If useAnchor is false, destination is the final top-left scroll position.
92 virtual void startPageScaleAnimation(const WebPoint& destination, bool useAnchor, float newPageScale, double durationSec) = 0;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.h338 bool startPageScaleAnimation(const IntPoint& targetPosition, bool useAnchor, float newScale, double durationInSeconds);
H A DWebViewImpl.cpp852 bool WebViewImpl::startPageScaleAnimation(const IntPoint& targetPosition, bool useAnchor, float newScale, double durationInSeconds) argument
855 if (!useAnchor) {
862 if (useAnchor && newScale == pageScaleFactor())
867 m_fakePageScaleAnimationUseAnchor = useAnchor;
872 m_layerTreeView->startPageScaleAnimation(targetPosition, useAnchor, newScale, durationInSeconds);
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebFrameTest.cpp3875 virtual void startPageScaleAnimation(const WebPoint& destination, bool useAnchor, float newPageScale, double durationSec) OVERRIDE { }

Completed in 116 milliseconds