Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/properties/CSSPropertyTransitionPropertyUtils.h |
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyTransitionPropertyUtils.h b/third_party/WebKit/Source/core/css/properties/CSSPropertyTransitionPropertyUtils.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c9e9b2112b7c65d352520f223f3a353638cce9b9 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyTransitionPropertyUtils.h |
| @@ -0,0 +1,24 @@ |
| +// Copyright 2017 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 CSSPropertyTransitionPropertyUtils_h |
| +#define CSSPropertyTransitionPropertyUtils_h |
| + |
| +#include "platform/wtf/Allocator.h" |
| + |
| +namespace blink { |
| + |
| +class CSSParserTokenRange; |
| +class CSSValue; |
| +class CSSValueList; |
| + |
| +class CSSPropertyTransitionPropertyUtils { |
| + STATIC_ONLY(CSSPropertyTransitionPropertyUtils); |
| + static CSSValue* ConsumeTransitionProperty(CSSParserTokenRange&); |
| + static bool IsValidAnimationPropertyList(const CSSValueList&); |
|
alancutter (OOO until 2018)
2017/06/15 04:53:49
Let's drop the word "Animation" here as it's confu
Bugs Nash
2017/06/15 05:44:37
done
|
| +}; |
| + |
| +} // namespace blink |
| + |
| +#endif // CSSPropertyTransitionPropertyUtils_h |