File tree 3 files changed +49
-0
lines changed
third_party/WebKit/Source/core/css
3 files changed +49
-0
lines changed Original file line number Diff line number Diff line change @@ -348,6 +348,8 @@ blink_core_sources("css") {
348
348
" parser/CSSParserIdioms.h" ,
349
349
" parser/CSSParserImpl.cpp" ,
350
350
" parser/CSSParserImpl.h" ,
351
+ " parser/CSSParserLocalContext.cpp" ,
352
+ " parser/CSSParserLocalContext.h" ,
351
353
" parser/CSSParserMode.h" ,
352
354
" parser/CSSParserObserver.h" ,
353
355
" parser/CSSParserObserverWrapper.cpp" ,
Original file line number Diff line number Diff line change
1
+ // Copyright 2017 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 " core/css/parser/CSSParserLocalContext.h"
6
+
7
+ namespace blink {
8
+
9
+ CSSParserLocalContext::CSSParserLocalContext () : use_alias_parsing_(false ) {}
10
+
11
+ CSSParserLocalContext::CSSParserLocalContext (bool use_alias_parsing)
12
+ : use_alias_parsing_(use_alias_parsing) {}
13
+
14
+ bool CSSParserLocalContext::GetUseAliasParsing () {
15
+ return use_alias_parsing_;
16
+ }
17
+
18
+ } // namespace blink
Original file line number Diff line number Diff line change
1
+ // Copyright 2017 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 CSSParserLocalContext_h
6
+ #define CSSParserLocalContext_h
7
+
8
+ #include " platform/wtf/Allocator.h"
9
+
10
+ namespace blink {
11
+
12
+ // A wrapper class containing all local context when parsing a property.
13
+ // TODO(jiameng): add info for shorthand properties into this class.
14
+
15
+ class CSSParserLocalContext {
16
+ STACK_ALLOCATED ();
17
+
18
+ public:
19
+ CSSParserLocalContext ();
20
+ explicit CSSParserLocalContext (bool use_alias_parsing);
21
+ bool GetUseAliasParsing ();
22
+
23
+ private:
24
+ bool use_alias_parsing_;
25
+ };
26
+
27
+ } // namespace blink
28
+
29
+ #endif // CSSParserLocalContext_h
You can’t perform that action at this time.
0 commit comments