Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPID.cpp |
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPID.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPID.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3246bb7ce0770dd217cde9c55abf9aa585764fcc |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPID.cpp |
| @@ -0,0 +1,17 @@ |
| +// 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/CSSPropertyAPID.h" |
| + |
| +#include "core/css/properties/CSSPropertyOffsetPathUtils.h" |
| + |
|
Bugs Nash
2017/05/11 23:14:53
I would forward declare the classes CSSValue, CSSP
Eric Willigers
2017/05/12 00:16:13
I respectfully disagree.
Is it OK that CSSPropert
|
| +namespace blink { |
| + |
| +const CSSValue* CSSPropertyAPID::parseSingleValue(CSSParserTokenRange& range, |
| + const CSSParserContext&, |
| + CSSPropertyID) { |
| + return CSSPropertyOffsetPathUtils::ConsumePathOrNone(range); |
| +} |
| + |
| +} // namespace blink |