summaryrefslogtreecommitdiffstats
path: root/webkit/compositor_bindings/WebAnimationCurveCommon.h
blob: 1278830b7f6501c23c63eb1b3c6487bf2b0afbb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2012 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 WebAnimationCurveCommon_h
#define WebAnimationCurveCommon_h

#include "base/memory/scoped_ptr.h"
#include <public/WebAnimationCurve.h>
#include <wtf/Forward.h>

namespace cc {
class CCTimingFunction;
}

namespace WebKit {
scoped_ptr<cc::CCTimingFunction> createTimingFunction(WebAnimationCurve::TimingFunctionType);
}

#endif // WebAnimationCurveCommon_h