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

Unified Diff: third_party/WebKit/Source/core/css/StylePropertySet.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/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];
}

Powered by Google App Engine
This is Rietveld 408576698