Skip to content

Commit b6460e2

Browse files
jm318Commit bot
authored and
Commit bot
committed
Create a new local context class.
CSSParserLocalContext represents local context for each property. Currently it only has one boolean field (use_alias_parsing), but it will be later extended to contain other info, such as whether the property is a longhand of a shorthand. BUG=668012 Review-Url: https://codereview.chromium.org/2901393002 Cr-Commit-Position: refs/heads/master@{#474897}
1 parent 09743e5 commit b6460e2

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

third_party/WebKit/Source/core/css/BUILD.gn

+2
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,8 @@ blink_core_sources("css") {
348348
"parser/CSSParserIdioms.h",
349349
"parser/CSSParserImpl.cpp",
350350
"parser/CSSParserImpl.h",
351+
"parser/CSSParserLocalContext.cpp",
352+
"parser/CSSParserLocalContext.h",
351353
"parser/CSSParserMode.h",
352354
"parser/CSSParserObserver.h",
353355
"parser/CSSParserObserverWrapper.cpp",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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

0 commit comments

Comments
 (0)