Chromium Code Reviews| Index: Source/core/css/parser/BisonCSSParser.h |
| diff --git a/Source/core/css/parser/BisonCSSParser.h b/Source/core/css/parser/BisonCSSParser.h |
| index 90c9c7ecbec74d20ef60de4de218d47a6884499b..bafb7afe318c46e70dbe71a95645671e3e560cf2 100644 |
| --- a/Source/core/css/parser/BisonCSSParser.h |
| +++ b/Source/core/css/parser/BisonCSSParser.h |
| @@ -78,10 +78,11 @@ struct CSSParserLocation { |
| }; |
| class BisonCSSParser { |
| + STACK_ALLOCATED(); |
| friend inline int cssyylex(void*, BisonCSSParser*); |
| - |
| public: |
| BisonCSSParser(const CSSParserContext&); |
|
haraken
2014/03/28 11:50:53
Add explicit.
wibling-chromium
2014/03/28 12:05:37
Done.
|
| + BisonCSSParser(Document*); |
|
haraken
2014/03/28 11:50:53
Add explicit.
wibling-chromium
2014/03/28 12:05:37
Done.
|
| ~BisonCSSParser(); |
| void rollbackLastProperties(int num); |
| @@ -226,6 +227,8 @@ public: |
| CSSParserLocation currentLocation() { return m_tokenizer.currentLocation(); } |
| private: |
| + void init(); |
| + |
| class StyleDeclarationScope { |
| WTF_MAKE_NONCOPYABLE(StyleDeclarationScope); |
| public: |