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

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

Issue 1164573002: CSSValue Immediates: Change CSSValue to an object instead of a pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase and oilpan feedback Created 5 years, 6 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CSSParserFastPaths_h 5 #ifndef CSSParserFastPaths_h
6 #define CSSParserFastPaths_h 6 #define CSSParserFastPaths_h
7 7
8 #include "core/CSSPropertyNames.h" 8 #include "core/CSSPropertyNames.h"
9 #include "core/CSSValueKeywords.h" 9 #include "core/CSSValueKeywords.h"
10 #include "platform/graphics/Color.h" 10 #include "platform/graphics/Color.h"
11 #include "platform/heap/Handle.h" 11 #include "platform/heap/Handle.h"
12 #include "wtf/Forward.h" 12 #include "wtf/Forward.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class CSSValue; 16 class NullableCSSValue;
17 17
18 class CSSParserFastPaths { 18 class CSSParserFastPaths {
19 public: 19 public:
20 // Parses simple values like '10px' or 'green', but makes no guarantees 20 // Parses simple values like '10px' or 'green', but makes no guarantees
21 // about handling any property completely. 21 // about handling any property completely.
22 static PassRefPtrWillBeRawPtr<CSSValue> maybeParseValue(CSSPropertyID, const String&, CSSParserMode); 22 static NullableCSSValue maybeParseValue(CSSPropertyID, const String&, CSSPar serMode);
23 23
24 // Properties handled here shouldn't be explicitly handled in CSSPropertyPar ser 24 // Properties handled here shouldn't be explicitly handled in CSSPropertyPar ser
25 static bool isKeywordPropertyID(CSSPropertyID); 25 static bool isKeywordPropertyID(CSSPropertyID);
26 static bool isValidKeywordPropertyAndValue(CSSPropertyID, CSSValueID); 26 static bool isValidKeywordPropertyAndValue(CSSPropertyID, CSSValueID);
27 27
28 // Keywords like 'green' will be resolved here, unlike during regular 28 // Keywords like 'green' will be resolved here, unlike during regular
29 // property parsing where we'd leave it as a keyword. 29 // property parsing where we'd leave it as a keyword.
30 static bool parseColorAsRGBA32(RGBA32&, const String&, bool quirksMode); 30 static bool parseColorAsRGBA32(RGBA32&, const String&, bool quirksMode);
31 }; 31 };
32 32
33 } // namespace blink 33 } // namespace blink
34 34
35 #endif // CSSParserFastPaths_h 35 #endif // CSSParserFastPaths_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698