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

Unified Diff: third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.cpp

Issue 2657443005: Migrate WTF::HashSet::add() to ::insert() [part 1 of N] (Closed)
Patch Set: Created 3 years, 11 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/animation/animatable/AnimatableValueKeyframe.cpp
diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.cpp b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.cpp
index 3ff76d070ede7ce1c575459609e3a8c23366e354..a1676dca06e258da048f4c99eafe7bc8694ca5b8 100644
--- a/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.cpp
+++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableValueKeyframe.cpp
@@ -23,7 +23,7 @@ PropertyHandleSet AnimatableValueKeyframe::properties() const {
PropertyHandleSet properties;
for (PropertyValueMap::const_iterator iter = m_propertyValues.begin();
iter != m_propertyValues.end(); ++iter)
- properties.add(PropertyHandle(*iter.keys()));
+ properties.insert(PropertyHandle(*iter.keys()));
return properties;
}

Powered by Google App Engine
This is Rietveld 408576698