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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.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/bindings/core/v8/V8PerIsolateData.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp b/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp
index 9f60e5b82122bba38021cda16e0241ac41e5566f..906e829eae0e6a7961574fd06e34cec7ad4bcaba 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp
@@ -403,7 +403,7 @@ void V8PerIsolateData::addActiveScriptWrappable(
if (!m_activeScriptWrappables)
m_activeScriptWrappables = new ActiveScriptWrappableSet();
- m_activeScriptWrappables->add(wrappable);
+ m_activeScriptWrappables->insert(wrappable);
}
void V8PerIsolateData::TemporaryScriptWrappableVisitorScope::

Powered by Google App Engine
This is Rietveld 408576698