| Index: third_party/WebKit/public/platform/WebScrollOffsetAnimationCurve.h
|
| diff --git a/third_party/WebKit/public/platform/WebScrollOffsetAnimationCurve.h b/third_party/WebKit/public/platform/WebScrollOffsetAnimationCurve.h
|
| deleted file mode 100644
|
| index 91ad7d739f18c8f91ab443b487770b8e9a591ca8..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/public/platform/WebScrollOffsetAnimationCurve.h
|
| +++ /dev/null
|
| @@ -1,32 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef WebScrollOffsetAnimationCurve_h
|
| -#define WebScrollOffsetAnimationCurve_h
|
| -
|
| -#include "WebCompositorAnimationCurve.h"
|
| -#include "WebFloatPoint.h"
|
| -
|
| -namespace blink {
|
| -
|
| -class WebScrollOffsetAnimationCurve : public WebCompositorAnimationCurve {
|
| -public:
|
| - virtual ~WebScrollOffsetAnimationCurve() { }
|
| -
|
| - enum ScrollDurationBehavior {
|
| - ScrollDurationDeltaBased = 0,
|
| - ScrollDurationConstant,
|
| - ScrollDurationInverseDelta
|
| - };
|
| -
|
| - virtual void setInitialValue(WebFloatPoint) = 0;
|
| - virtual WebFloatPoint getValue(double time) const = 0;
|
| - virtual double duration() const = 0;
|
| - virtual WebFloatPoint targetValue() const = 0;
|
| - virtual void updateTarget(double time, WebFloatPoint newTarget) = 0;
|
| -};
|
| -
|
| -} // namespace blink
|
| -
|
| -#endif // WebScrollOffsetAnimationCurve_h
|
|
|