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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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 #include "config.h"
6 #include "core/css/parser/CSSParser.h"
7
8 #include "core/css/CSSKeyframeRule.h"
9 #include "core/css/StyleColor.h"
10 #include "core/css/StyleRule.h"
11
12 namespace blink {
13
14 CSSParser::CSSParser(const CSSParserContext& context)
15 : m_bisonParser(context)
16 {
17 }
18
19 bool CSSParser::parseDeclaration(MutableStylePropertySet* propertySet, const Str ing& declaration, CSSParserObserver* observer, StyleSheetContents* styleSheet)
20 {
21 return m_bisonParser.parseDeclaration(propertySet, declaration, observer, st yleSheet);
22 }
23
24 void CSSParser::parseSelector(const String& selector, CSSSelectorList& selectorL ist)
25 {
26 m_bisonParser.parseSelector(selector, selectorList);
27 }
28
29 PassRefPtrWillBeRawPtr<StyleRuleBase> CSSParser::parseRule(const CSSParserContex t& context, StyleSheetContents* styleSheet, const String& rule)
30 {
31 return BisonCSSParser(context).parseRule(styleSheet, rule);
32 }
33
34 void CSSParser::parseSheet(const CSSParserContext& context, StyleSheetContents* styleSheet, const String& text, const TextPosition& startPosition, CSSParserObse rver* observer, bool logErrors)
35 {
36 BisonCSSParser(context).parseSheet(styleSheet, text, startPosition, observer , logErrors);
37 }
38
39 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID p ropertyID, const String& string, bool important, CSSParserMode parserMode, Style SheetContents* styleSheet)
40 {
41 return BisonCSSParser::parseValue(declaration, propertyID, string, important , parserMode, styleSheet);
42 }
43
44 bool CSSParser::parseValue(MutableStylePropertySet* declaration, CSSPropertyID p ropertyID, const String& string, bool important, const Document& document)
45 {
46 return BisonCSSParser::parseValue(declaration, propertyID, string, important , document);
47 }
48
49 PassRefPtrWillBeRawPtr<ImmutableStylePropertySet> CSSParser::parseInlineStyleDec laration(const String& styleString, Element* element)
50 {
51 return BisonCSSParser::parseInlineStyleDeclaration(styleString, element);
52 }
53
54 PassOwnPtr<Vector<double> > CSSParser::parseKeyframeKeyList(const String& keyLis t)
55 {
56 return BisonCSSParser(strictCSSParserContext()).parseKeyframeKeyList(keyList );
57 }
58
59 PassRefPtrWillBeRawPtr<StyleKeyframe> CSSParser::parseKeyframeRule(const CSSPars erContext& context, StyleSheetContents* styleSheet, const String& rule)
60 {
61 return BisonCSSParser(context).parseKeyframeRule(styleSheet, rule);
62 }
63
64 bool CSSParser::parseSupportsCondition(const String& condition)
65 {
66 return BisonCSSParser(CSSParserContext(HTMLStandardMode, 0)).parseSupportsCo ndition(condition);
67 }
68
69 PassRefPtr<CSSValueList> CSSParser::parseFontFaceValue(const AtomicString& fontF ace)
70 {
71 return BisonCSSParser::parseFontFaceValue(fontFace);
72 }
73
74 PassRefPtr<CSSValue> CSSParser::parseAnimationTimingFunctionValue(const String& timingFunction)
75 {
76 return BisonCSSParser::parseAnimationTimingFunctionValue(timingFunction);
77 }
78
79 bool CSSParser::parseColor(RGBA32& color, const String& string, bool strict)
80 {
81 return BisonCSSParser::parseColor(color, string, strict);
82 }
83
84 StyleColor CSSParser::colorFromRGBColorString(const String& string)
85 {
86 return BisonCSSParser::colorFromRGBColorString(string);
87 }
88
89 bool CSSParser::parseSystemColor(RGBA32& color, const String& colorString)
90 {
91 return BisonCSSParser::parseSystemColor(color, colorString);
92 }
93
94 } // namespace blink
OLDNEW
« 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