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

Unified Diff: third_party/WebKit/Source/platform/graphics/compositing/PropertyTreeManager.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/platform/graphics/compositing/PropertyTreeManager.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/compositing/PropertyTreeManager.cpp b/third_party/WebKit/Source/platform/graphics/compositing/PropertyTreeManager.cpp
index 739e48444d7a0db88515b29a37ad8b64571514a4..0fde7cef61cc389bebd27ced9126503148b5ae72 100644
--- a/third_party/WebKit/Source/platform/graphics/compositing/PropertyTreeManager.cpp
+++ b/third_party/WebKit/Source/platform/graphics/compositing/PropertyTreeManager.cpp
@@ -354,7 +354,7 @@ void PropertyTreeManager::buildEffectNodesRecursively(
DCHECK(!m_effectNodesConverted.contains(nextEffect))
<< "Malformed paint artifact. Paint chunks under the same effect should "
"be contiguous.";
- m_effectNodesConverted.add(nextEffect);
+ m_effectNodesConverted.insert(nextEffect);
#endif
// An effect node can't omit render surface if it has child with exotic

Powered by Google App Engine
This is Rietveld 408576698