Chromium Code Reviews| Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp |
| diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2d4e00d2eb4e95b03680722e1ff2577b602f627c |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp |
| @@ -0,0 +1,18 @@ |
| +// 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/CSSPropertyAPIOffsetPath.h" |
| + |
| +#include "core/css/properties/CSSPropertyOffsetPathUtils.h" |
| + |
|
Bugs Nash
2017/05/11 23:19:06
As with previous patch, please forward declare CSS
Eric Willigers
2017/05/12 00:29:38
Not needed, these types are used in a method signa
|
| +namespace blink { |
| + |
| +const CSSValue* CSSPropertyAPIOffsetPath::parseSingleValue( |
| + CSSParserTokenRange& range, |
| + const CSSParserContext& context, |
| + CSSPropertyID) { |
| + return CSSPropertyOffsetPathUtils::ConsumeOffsetPath(range, &context); |
| +} |
| + |
| +} // namespace blink |