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

Unified Diff: third_party/WebKit/Source/core/css/RuleSet.cpp

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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/RuleSet.cpp
diff --git a/third_party/WebKit/Source/core/css/RuleSet.cpp b/third_party/WebKit/Source/core/css/RuleSet.cpp
index d4056c94afd2467d6521c01069a5f771e3ef8d9b..88c4e96685276cbb8a5a2433a98a0e1ea7aab482 100644
--- a/third_party/WebKit/Source/core/css/RuleSet.cpp
+++ b/third_party/WebKit/Source/core/css/RuleSet.cpp
@@ -260,17 +260,17 @@ void RuleSet::AddRule(StyleRule* rule,
}
void RuleSet::AddPageRule(StyleRulePage* rule) {
- EnsurePendingRules(); // So that m_pageRules.shrinkToFit() gets called.
+ EnsurePendingRules(); // So that page_rules_.ShrinkToFit() gets called.
dcheng 2017/04/10 23:19:57 This is likely going to get renamed to shrink_to_f
page_rules_.push_back(rule);
}
void RuleSet::AddFontFaceRule(StyleRuleFontFace* rule) {
- EnsurePendingRules(); // So that m_fontFaceRules.shrinkToFit() gets called.
+ EnsurePendingRules(); // So that font_face_rules_.ShrinkToFit() gets called.
font_face_rules_.push_back(rule);
}
void RuleSet::AddKeyframesRule(StyleRuleKeyframes* rule) {
- EnsurePendingRules(); // So that m_keyframesRules.shrinkToFit() gets called.
+ EnsurePendingRules(); // So that keyframes_rules_.ShrinkToFit() gets called.
keyframes_rules_.push_back(rule);
}
« no previous file with comments | « third_party/WebKit/Source/core/css/RemoteFontFaceSource.cpp ('k') | third_party/WebKit/Source/core/css/SelectorChecker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698