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

Unified Diff: third_party/WebKit/Source/web/AnimationWorkletProxyClientImpl.cpp

Issue 2688893002: Migrate WTF::HashSet::add() to ::insert() [continued] (Closed)
Patch Set: rebase, fix one platform-specific reference Created 3 years, 10 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/AnimationWorkletProxyClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/AnimationWorkletProxyClientImpl.cpp b/third_party/WebKit/Source/web/AnimationWorkletProxyClientImpl.cpp
index 5287393191c99614218e6de6a23a9ac6b38c4b24..0cef84cc5a27a1eb1354ecdb3f6c651a7f9551fc 100644
--- a/third_party/WebKit/Source/web/AnimationWorkletProxyClientImpl.cpp
+++ b/third_party/WebKit/Source/web/AnimationWorkletProxyClientImpl.cpp
@@ -35,7 +35,7 @@ bool AnimationWorkletProxyClientImpl::mutate(
void AnimationWorkletProxyClientImpl::registerCompositorProxy(
CompositorProxy* proxy) {
DCHECK(!isMainThread());
- m_proxies.add(proxy);
+ m_proxies.insert(proxy);
}
void AnimationWorkletProxyClientImpl::unregisterCompositorProxy(

Powered by Google App Engine
This is Rietveld 408576698