| Index: third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/StylePropertySet.cpp b/third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| index 3cfcc8c22d92ef706a5956a2758952b5d7695850..02681a2d5a98ed22bef01259a3f25607735738f7 100644
|
| --- a/third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| +++ b/third_party/WebKit/Source/core/css/StylePropertySet.cpp
|
| @@ -97,7 +97,7 @@ ImmutableStylePropertySet::ImmutableStylePropertySet(
|
|
|
| ImmutableStylePropertySet::~ImmutableStylePropertySet() {}
|
|
|
| -// Convert property into an uint16_t for comparison with metadata's m_propertyID
|
| +// Convert property into an uint16_t for comparison with metadata's property_id_
|
| // to avoid the compiler converting it to an int multiple times in a loop.
|
| static uint16_t GetConvertedCSSPropertyID(CSSPropertyID property_id) {
|
| return static_cast<uint16_t>(property_id);
|
| @@ -468,7 +468,7 @@ bool MutableStylePropertySet::RemovePropertiesInSet(const CSSPropertyID* set,
|
| const CSSProperty& property = properties[old_index];
|
| if (ContainsId(set, length, property.Id()))
|
| continue;
|
| - // Modify m_propertyVector in-place since this method is
|
| + // Modify property_vector_ in-place since this method is
|
| // performance-sensitive.
|
| properties[new_index++] = properties[old_index];
|
| }
|
|
|