| Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationIterationCount.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationIterationCount.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationIterationCount.cpp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d40107dfce0ce936f4814cd6de3248b401b85882
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationIterationCount.cpp
|
| @@ -0,0 +1,21 @@
|
| +// 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.
|
| +
|
| +#include "core/css/properties/CSSPropertyAPIAnimationIterationCount.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class CSSParserContext;
|
| +class CSSParserLocalContext;
|
| +class CSSParserTokenRange;
|
| +class CSSValue;
|
| +
|
| +const CSSValue* CSSPropertyAPIAnimationIterationCount::parseSingleValue(
|
| + CSSParserTokenRange& range,
|
| + const CSSParserContext&,
|
| + const CSSParserLocalContext&) {
|
| + return ConsumeAnimationIterationCount(range);
|
| +}
|
| +
|
| +} // namespace blink
|
|
|