| Index: sky/engine/core/css/parser/BisonCSSParser.h
|
| diff --git a/sky/engine/core/css/parser/BisonCSSParser.h b/sky/engine/core/css/parser/BisonCSSParser.h
|
| index e8bb0c1499c5c9de4a989830a47c6e2ee69d6cf6..93613a9a1fdf3643f1c93b2c80f1b6685ff3c527 100644
|
| --- a/sky/engine/core/css/parser/BisonCSSParser.h
|
| +++ b/sky/engine/core/css/parser/BisonCSSParser.h
|
| @@ -86,7 +86,7 @@ public:
|
| void rollbackLastProperties(int num);
|
| void setCurrentProperty(CSSPropertyID);
|
|
|
| - void parseSheet(StyleSheetContents*, const String&, const TextPosition& startPosition = TextPosition::minimumPosition(), CSSParserObserver* = 0, bool = false);
|
| + void parseSheet(StyleSheetContents*, const String&);
|
| PassRefPtr<StyleRuleBase> parseRule(StyleSheetContents*, const String&);
|
| PassRefPtr<StyleKeyframe> parseKeyframeRule(StyleSheetContents*, const String&);
|
| bool parseSupportsCondition(const String&);
|
| @@ -184,7 +184,6 @@ public:
|
| unsigned m_numParsedPropertiesBeforeMarginBox;
|
|
|
| bool m_hadSyntacticallyValidCSSRule;
|
| - bool m_logErrors;
|
| bool m_ignoreErrors;
|
|
|
| AtomicString m_defaultNamespace;
|
| @@ -205,8 +204,7 @@ public:
|
| void startEndUnknownRule();
|
|
|
| void endInvalidRuleHeader();
|
| - void reportError(const CSSParserLocation&, CSSParserError = GeneralCSSError);
|
| - void resumeErrorLogging() { m_ignoreErrors = false; }
|
| + void reportError(const CSSParserLocation&, CSSParserError = GeneralCSSError) { }
|
| void setLocationLabel(const CSSParserLocation& location) { m_locationLabel = location; }
|
| const CSSParserLocation& lastLocationLabel() const { return m_locationLabel; }
|
|
|
| @@ -270,9 +268,6 @@ private:
|
|
|
| OwnPtr<RuleSourceDataList> m_supportsRuleDataStack;
|
|
|
| - bool isLoggingErrors();
|
| - void logError(const String& message, const CSSParserLocation&);
|
| -
|
| CSSTokenizer m_tokenizer;
|
|
|
| friend class TransformOperationInfo;
|
|
|