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

Unified Diff: third_party/WebKit/Source/core/css/StyleRule.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/StyleRule.cpp
diff --git a/third_party/WebKit/Source/core/css/StyleRule.cpp b/third_party/WebKit/Source/core/css/StyleRule.cpp
index 1b2777218e876012636ac0e052c2f36bbfd12f20..95c1c64e24252d9c31ddbb63db57ec885c3589a4 100644
--- a/third_party/WebKit/Source/core/css/StyleRule.cpp
+++ b/third_party/WebKit/Source/core/css/StyleRule.cpp
@@ -239,7 +239,7 @@ StyleRule::StyleRule(const StyleRule& o)
StyleRule::~StyleRule() {}
MutableStylePropertySet& StyleRule::MutableProperties() {
- // Ensure m_properties is initialized.
+ // Ensure properties_ is initialized.
if (!Properties().IsMutable())
properties_ = properties_->MutableCopy();
return *ToMutableStylePropertySet(properties_.Get());
@@ -257,7 +257,7 @@ bool StyleRule::ShouldConsiderForMatchingRules(bool include_empty_rules) const {
}
bool StyleRule::HasParsedProperties() const {
- // StyleRule should only have one of {m_lazyPropertyParser, m_properties} set.
+ // StyleRule should only have one of {lazy_property_parser_, properties_} set.
DCHECK(lazy_property_parser_ || properties_);
DCHECK(!lazy_property_parser_ || !properties_);
return !lazy_property_parser_;

Powered by Google App Engine
This is Rietveld 408576698