Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 #include "core/css/properties/CSSPropertyAPIOffsetPath.h" | |
| 6 | |
| 7 #include "core/css/properties/CSSPropertyOffsetPathUtils.h" | |
| 8 | |
|
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
| |
| 9 namespace blink { | |
| 10 | |
| 11 const CSSValue* CSSPropertyAPIOffsetPath::parseSingleValue( | |
| 12 CSSParserTokenRange& range, | |
| 13 const CSSParserContext& context, | |
| 14 CSSPropertyID) { | |
| 15 return CSSPropertyOffsetPathUtils::ConsumeOffsetPath(range, &context); | |
| 16 } | |
| 17 | |
| 18 } // namespace blink | |
| OLD | NEW |