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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/properties/CSSPropertyShapeUtil.h
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyShapeUtil.h b/third_party/WebKit/Source/core/css/properties/CSSPropertyShapeUtil.h
new file mode 100644
index 0000000000000000000000000000000000000000..c4ee2a624f2c2e8ce93230513d28d5092d23c5ee
--- /dev/null
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyShapeUtil.h
@@ -0,0 +1,31 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CSSPropertyShapeUtil_h
+#define CSSPropertyShapeUtil_h
+
+#include "core/css/parser/CSSParserMode.h"
+#include "wtf/Allocator.h"
+
+namespace blink {
+
+class CSSValue;
+class CSSParserContext;
+class CSSParserTokenRange;
+
+class CSSPropertyShapeUtil {
+ STATIC_ONLY(CSSPropertyShapeUtil);
+
+ static CSSValue* consumeBasicShape(CSSParserTokenRange&,
+ const CSSParserContext*);
+ static bool consumeRadii(CSSValue* horizontalRadii[4],
+ CSSValue* verticalRadii[4],
+ CSSParserTokenRange&,
+ CSSParserMode,
+ bool useLegacyParsing);
+};
+
+} // namespace blink
+
+#endif // CSSPropertyShapeUtil_h

Powered by Google App Engine
This is Rietveld 408576698