Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyShapeUtil.h

Issue 2642013002: Implements CSSPropertyAPI for the shape-outside property. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698