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

Unified Diff: third_party/WebKit/Source/web/CompositorMutatorImpl.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/web/CompositorMutatorImpl.cpp
diff --git a/third_party/WebKit/Source/web/CompositorMutatorImpl.cpp b/third_party/WebKit/Source/web/CompositorMutatorImpl.cpp
index a3a64eadfbe38753cfcc84a04f59fc5c15b283c1..867cc4b1a8df54f3e906abe9b8263b8e7f97959f 100644
--- a/third_party/WebKit/Source/web/CompositorMutatorImpl.cpp
+++ b/third_party/WebKit/Source/web/CompositorMutatorImpl.cpp
@@ -78,7 +78,7 @@ void CompositorMutatorImpl::registerProxyClient(
CompositorProxyClientImpl* client) {
TRACE_EVENT0("compositor-worker", "CompositorMutatorImpl::registerClient");
DCHECK(!m_proxyClients.contains(client));
- m_proxyClients.add(client);
+ m_proxyClients.insert(client);
setNeedsMutate();
}

Powered by Google App Engine
This is Rietveld 408576698