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/CSSPropertyAPID.h" | |
| 6 | |
| 7 #include "core/css/properties/CSSPropertyOffsetPathUtils.h" | |
| 8 | |
|
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
| |
| 9 namespace blink { | |
| 10 | |
| 11 const CSSValue* CSSPropertyAPID::parseSingleValue(CSSParserTokenRange& range, | |
| 12 const CSSParserContext&, | |
| 13 CSSPropertyID) { | |
| 14 return CSSPropertyOffsetPathUtils::ConsumePathOrNone(range); | |
| 15 } | |
| 16 | |
| 17 } // namespace blink | |
| OLD | NEW |