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

Unified Diff: Source/core/css/parser/CSSParser.cpp

Issue 566483002: Split out CSSParser public API (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: \ Created 6 years, 3 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
« no previous file with comments | « Source/core/css/parser/CSSParser.h ('k') | Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/parser/CSSParser.cpp
diff --git a/Source/core/css/parser/CSSParser.cpp b/Source/core/css/parser/CSSParser.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..c1f2f743b7f83affe43eecbf15183f9de0c1476a
--- /dev/null
+++ b/Source/core/css/parser/CSSParser.cpp
@@ -0,0 +1,94 @@
+// Copyright 2014 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.
+
+#include "config.h"
+#include "core/css/parser/CSSParser.h"
+
+#include "core/css/CSSKeyframeRule.h"
+#include "core/css/StyleColor.h"
+#include "core/css/StyleRule.h"
+
+namespace blink {
+
+CSSParser::CSSParser(const CSSParserContext& context)
+ : m_bisonParser(context)
+{
+}
+
+bool CSSParser::parseDeclaration(MutableStylePropertySet* propertySet, const String& declaration, CSSParserObserver* observer, StyleSheetContents* styleSheet)
+{
+ return m_bisonParser.parseDeclaration(propertySet, declaration, observer, styleSheet);
+}
+
+void CSSParser::parseSelector(const String& selector, CSSSelectorList& selectorList)
+{
+ m_bisonParser.parseSelector(selector, selectorList);
+}
+
+PassRefPtrWillBeRawPtr<StyleRuleBase> CSSParser::parseRule(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& rule)
+{
+ return BisonCSSParser(context).parseRule(styleSheet, rule);
+}
+
+void CSSParser::parseSheet(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& text, const TextPosition& startPosition, CSSParserObserver* observer, bool logErrors)
+{
+ BisonCSSParser(context).parseSheet(styleSheet, text, startPosition, observer, logErrors);
+}
+
+bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode parserMode, StyleSheetContents* styleSheet)
+{
+ return BisonCSSParser::parseValue(declaration, propertyID, string, important, parserMode, styleSheet);
+}
+
+bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID propertyID, const String& string, bool important, const Document& document)
+{
+ return BisonCSSParser::parseValue(declaration, propertyID, string, important, document);
+}
+
+PassRefPtrWillBeRawPtr<ImmutableStylePropertySet> CSSParser::parseInlineStyleDeclaration(const String& styleString, Element* element)
+{
+ return BisonCSSParser::parseInlineStyleDeclaration(styleString, element);
+}
+
+PassOwnPtr<Vector<double> > CSSParser::parseKeyframeKeyList(const String& keyList)
+{
+ return BisonCSSParser(strictCSSParserContext()).parseKeyframeKeyList(keyList);
+}
+
+PassRefPtrWillBeRawPtr<StyleKeyframe> CSSParser::parseKeyframeRule(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& rule)
+{
+ return BisonCSSParser(context).parseKeyframeRule(styleSheet, rule);
+}
+
+bool CSSParser::parseSupportsCondition(const String& condition)
+{
+ return BisonCSSParser(CSSParserContext(HTMLStandardMode, 0)).parseSupportsCondition(condition);
+}
+
+PassRefPtr<CSSValueList> CSSParser::parseFontFaceValue(const AtomicString& fontFace)
+{
+ return BisonCSSParser::parseFontFaceValue(fontFace);
+}
+
+PassRefPtr<CSSValue> CSSParser::parseAnimationTimingFunctionValue(const String& timingFunction)
+{
+ return BisonCSSParser::parseAnimationTimingFunctionValue(timingFunction);
+}
+
+bool CSSParser::parseColor(RGBA32& color, const String& string, bool strict)
+{
+ return BisonCSSParser::parseColor(color, string, strict);
+}
+
+StyleColor CSSParser::colorFromRGBColorString(const String& string)
+{
+ return BisonCSSParser::colorFromRGBColorString(string);
+}
+
+bool CSSParser::parseSystemColor(RGBA32& color, const String& colorString)
+{
+ return BisonCSSParser::parseSystemColor(color, colorString);
+}
+
+} // namespace blink
« no previous file with comments | « Source/core/css/parser/CSSParser.h ('k') | Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698