1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef AnimationInputHelpers_h
6#define AnimationInputHelpers_h
7
8#include "core/CSSPropertyNames.h"
9#include "wtf/Forward.h"
10
11namespace blink {
12
13class TimingFunction;
14
15class AnimationInputHelpers {
16public:
17    static CSSPropertyID keyframeAttributeToCSSPropertyID(const String&);
18    static PassRefPtr<TimingFunction> parseTimingFunction(const String&);
19};
20
21} // namespace blink
22
23#endif // AnimationInputHelpers_h
24