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 #ifndef CSSPropertyShapeUtil_h |
| 6 #define CSSPropertyShapeUtil_h |
| 7 |
| 8 #include "core/css/parser/CSSParserMode.h" |
| 9 #include "wtf/Allocator.h" |
| 10 |
| 11 namespace blink { |
| 12 |
| 13 class CSSValue; |
| 14 class CSSParserContext; |
| 15 class CSSParserTokenRange; |
| 16 |
| 17 class CSSPropertyShapeUtil { |
| 18 STATIC_ONLY(CSSPropertyShapeUtil); |
| 19 |
| 20 static CSSValue* consumeBasicShape(CSSParserTokenRange&, |
| 21 const CSSParserContext*); |
| 22 static bool consumeRadii(CSSValue* horizontalRadii[4], |
| 23 CSSValue* verticalRadii[4], |
| 24 CSSParserTokenRange&, |
| 25 CSSParserMode, |
| 26 bool useLegacyParsing); |
| 27 }; |
| 28 |
| 29 } // namespace blink |
| 30 |
| 31 #endif // CSSPropertyShapeUtil_h |
OLD | NEW |