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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBlockFlow.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/layout/LayoutBlockFlow.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
index 49d25e0e6202d58062c54e21c0851061e72b01a4..f2f945d27010331740d9a5e8484f7f9cd5e80395 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
@@ -1262,7 +1262,7 @@ void LayoutBlockFlow::rebuildFloatsFromIntruding() {
++it) {
const FloatingObject& floatingObject = *it->get();
if (!floatingObject.isDescendant())
- oldIntrudingFloatSet.add(floatingObject.layoutObject());
+ oldIntrudingFloatSet.insert(floatingObject.layoutObject());
}
}

Powered by Google App Engine
This is Rietveld 408576698