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_; |