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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h

Issue 1603193002: Move two shape related properties into CSSPropertyParser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 4 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/parser/CSSPropertyParser.h
diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h
index da98c2d7b42e39e0cf216affe8a3ffbd0d5edbc1..8f8c6e919c24c06f89dc0d7db6e11d58a55ca32e 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h
@@ -35,11 +35,6 @@ namespace blink {
class BorderImageParseContext;
class CSSBorderImageSliceValue;
-class CSSBasicShapeValue;
-class CSSBasicShapeEllipseValue;
-class CSSBasicShapeCircleValue;
-class CSSBasicShapeInsetValue;
-class CSSBasicShapePolygonValue;
class CSSCustomIdentValue;
class CSSFunctionValue;
class CSSGradientValue;
@@ -191,16 +186,6 @@ private:
PassRefPtrWillBeRawPtr<CSSValue> parseItemPositionOverflowPosition();
PassRefPtrWillBeRawPtr<CSSValue> parseContentDistributionOverflowPosition();
- PassRefPtrWillBeRawPtr<CSSValue> parseShapeProperty(CSSPropertyID propId);
- PassRefPtrWillBeRawPtr<CSSValue> parseBasicShapeAndOrBox();
- PassRefPtrWillBeRawPtr<CSSValue> parseBasicShape();
- PassRefPtrWillBeRawPtr<CSSPrimitiveValue> parseShapeRadius(CSSParserValue*);
-
- PassRefPtrWillBeRawPtr<CSSBasicShapeCircleValue> parseBasicShapeCircle(CSSParserValueList* args);
- PassRefPtrWillBeRawPtr<CSSBasicShapeEllipseValue> parseBasicShapeEllipse(CSSParserValueList* args);
- PassRefPtrWillBeRawPtr<CSSBasicShapePolygonValue> parseBasicShapePolygon(CSSParserValueList* args);
- PassRefPtrWillBeRawPtr<CSSBasicShapeInsetValue> parseBasicShapeInset(CSSParserValueList* args);
-
bool consumeFont(bool important);
bool consumeSystemFont(bool important);
@@ -330,9 +315,6 @@ private:
CSSPropertyID unresolvedCSSPropertyID(const CSSParserString&);
CSSValueID cssValueKeywordID(const CSSParserString&);
-// TODO(rwlbuis): move to CSSPropertyParser.cpp once CSSParserToken conversion is done.
-void completeBorderRadii(RefPtrWillBeRawPtr<CSSPrimitiveValue> radii[4]);
-
} // namespace blink
#endif // CSSPropertyParser_h

Powered by Google App Engine
This is Rietveld 408576698