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

Side by Side Diff: third_party/WebKit/Source/core/css/parser/CSSParserImpl.h

Issue 2812743003: Rename cleanup in comments in css/ directory. (Closed)
Patch Set: Created 3 years, 8 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 CSSParserImpl_h 5 #ifndef CSSParserImpl_h
6 #define CSSParserImpl_h 6 #define CSSParserImpl_h
7 7
8 #include "core/CSSPropertyNames.h" 8 #include "core/CSSPropertyNames.h"
9 #include "core/css/CSSProperty.h" 9 #include "core/css/CSSProperty.h"
10 #include "core/css/CSSPropertySourceData.h" 10 #include "core/css/CSSPropertySourceData.h"
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 CSSParserTokenRange block); 125 CSSParserTokenRange block);
126 StyleRuleViewport* ConsumeViewportRule(CSSParserTokenRange prelude, 126 StyleRuleViewport* ConsumeViewportRule(CSSParserTokenRange prelude,
127 CSSParserTokenRange block); 127 CSSParserTokenRange block);
128 StyleRuleFontFace* ConsumeFontFaceRule(CSSParserTokenRange prelude, 128 StyleRuleFontFace* ConsumeFontFaceRule(CSSParserTokenRange prelude,
129 CSSParserTokenRange block); 129 CSSParserTokenRange block);
130 StyleRuleKeyframes* ConsumeKeyframesRule(bool webkit_prefixed, 130 StyleRuleKeyframes* ConsumeKeyframesRule(bool webkit_prefixed,
131 CSSParserTokenRange prelude, 131 CSSParserTokenRange prelude,
132 CSSParserTokenRange block); 132 CSSParserTokenRange block);
133 StyleRulePage* ConsumePageRule(CSSParserTokenRange prelude, 133 StyleRulePage* ConsumePageRule(CSSParserTokenRange prelude,
134 CSSParserTokenRange block); 134 CSSParserTokenRange block);
135 // Updates m_parsedProperties 135 // Updates parsed_properties_
136 void ConsumeApplyRule(CSSParserTokenRange prelude); 136 void ConsumeApplyRule(CSSParserTokenRange prelude);
137 137
138 StyleRuleKeyframe* ConsumeKeyframeStyleRule(CSSParserTokenRange prelude, 138 StyleRuleKeyframe* ConsumeKeyframeStyleRule(CSSParserTokenRange prelude,
139 CSSParserTokenRange block); 139 CSSParserTokenRange block);
140 StyleRule* ConsumeStyleRule(CSSParserTokenRange prelude, 140 StyleRule* ConsumeStyleRule(CSSParserTokenRange prelude,
141 CSSParserTokenRange block); 141 CSSParserTokenRange block);
142 142
143 void ConsumeDeclarationList(CSSParserTokenRange, StyleRule::RuleType); 143 void ConsumeDeclarationList(CSSParserTokenRange, StyleRule::RuleType);
144 void ConsumeDeclaration(CSSParserTokenRange, StyleRule::RuleType); 144 void ConsumeDeclaration(CSSParserTokenRange, StyleRule::RuleType);
145 void ConsumeDeclarationValue(CSSParserTokenRange, 145 void ConsumeDeclarationValue(CSSParserTokenRange,
(...skipping 17 matching lines...) Expand all
163 163
164 // For the inspector 164 // For the inspector
165 CSSParserObserverWrapper* observer_wrapper_; 165 CSSParserObserverWrapper* observer_wrapper_;
166 166
167 Member<CSSLazyParsingState> lazy_state_; 167 Member<CSSLazyParsingState> lazy_state_;
168 }; 168 };
169 169
170 } // namespace blink 170 } // namespace blink
171 171
172 #endif // CSSParserImpl_h 172 #endif // CSSParserImpl_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698