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

Side by Side Diff: Source/core/css/parser/CSSParser.h

Issue 566703002: Revert of 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/BisonCSSParser-in.cpp ('k') | Source/core/css/parser/CSSParser.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 #ifndef CSSParser_h
6 #define CSSParser_h
7
8 #include "core/css/parser/BisonCSSParser.h"
9
10 namespace blink {
11
12 // This class serves as the public API for the css/parser subsystem
13
14 // FIXME: This should probably be a static-only class or a singleton class
15 class CSSParser {
16 STACK_ALLOCATED();
17 public:
18 explicit CSSParser(const CSSParserContext&);
19
20 bool parseDeclaration(MutableStylePropertySet*, const String&, CSSParserObse rver*, StyleSheetContents* contextStyleSheet);
21 void parseSelector(const String&, CSSSelectorList&);
22
23 static PassRefPtrWillBeRawPtr<StyleRuleBase> parseRule(const CSSParserContex t&, StyleSheetContents*, const String&);
24 static void parseSheet(const CSSParserContext&, StyleSheetContents*, const S tring&, const TextPosition& startPosition, CSSParserObserver*, bool logErrors = false);
25 // FIXME: Unify these two into a single function
26 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String &, bool important, CSSParserMode, StyleSheetContents*);
27 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String &, bool important, const Document&);
28
29 static PassRefPtrWillBeRawPtr<ImmutableStylePropertySet> parseInlineStyleDec laration(const String&, Element*);
30
31 static PassOwnPtr<Vector<double> > parseKeyframeKeyList(const String&);
32 static PassRefPtrWillBeRawPtr<StyleKeyframe> parseKeyframeRule(const CSSPars erContext&, StyleSheetContents*, const String&);
33
34 static bool parseSupportsCondition(const String&);
35
36 static PassRefPtr<CSSValueList> parseFontFaceValue(const AtomicString&);
37 static PassRefPtr<CSSValue> parseAnimationTimingFunctionValue(const String&) ;
38
39 static bool parseColor(RGBA32& color, const String&, bool strict = false);
40 static bool parseSystemColor(RGBA32& color, const String&);
41 static StyleColor colorFromRGBColorString(const String&);
42
43 private:
44 BisonCSSParser m_bisonParser;
45 };
46
47 CSSPropertyID cssPropertyID(const String&);
48
49 } // namespace blink
50
51 #endif // CSSParser_h
52
OLDNEW
« no previous file with comments | « Source/core/css/parser/BisonCSSParser-in.cpp ('k') | Source/core/css/parser/CSSParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698