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/CSSPropertyAPIPage.h" | |
| 6 | |
| 7 #include "core/css/CSSValueList.h" | |
|
Bugs Nash
2017/01/05 23:04:16
not needed
aazzam
2017/01/08 02:42:25
removed :)
| |
| 8 #include "core/css/parser/CSSParserTokenRange.h" | |
|
Bugs Nash
2017/01/05 23:04:16
can be forward declared instead of included
aazzam
2017/01/08 02:42:25
fixed!
| |
| 9 #include "core/css/parser/CSSPropertyParserHelpers.h" | |
| 10 | |
| 11 namespace blink { | |
| 12 | |
| 13 const CSSValue* CSSPropertyAPIPage::parseSingleValue( | |
| 14 CSSParserTokenRange& range, | |
| 15 const CSSParserContext& context) { | |
| 16 if (range.peek().id() == CSSValueAuto) | |
| 17 return CSSPropertyParserHelpers::consumeIdent(range); | |
| 18 return CSSPropertyParserHelpers::consumeCustomIdent(range); | |
| 19 } | |
| 20 | |
| 21 } // namespace blink | |
| OLD | NEW |