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

Unified Diff: third_party/WebKit/Source/web/CompositorProxyClientImpl.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/CompositorProxyClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/CompositorProxyClientImpl.cpp b/third_party/WebKit/Source/web/CompositorProxyClientImpl.cpp
index 07275554bc24228ff151d6e00b9e65a1e508e69e..b9c3e9bf3f250e66c987650915e4ace97be97396 100644
--- a/third_party/WebKit/Source/web/CompositorProxyClientImpl.cpp
+++ b/third_party/WebKit/Source/web/CompositorProxyClientImpl.cpp
@@ -109,7 +109,7 @@ bool CompositorProxyClientImpl::executeAnimationFrameCallbacks(
void CompositorProxyClientImpl::registerCompositorProxy(
CompositorProxy* proxy) {
- m_proxies.add(proxy);
+ m_proxies.insert(proxy);
}
void CompositorProxyClientImpl::unregisterCompositorProxy(
« no previous file with comments | « third_party/WebKit/Source/web/CompositorMutatorImpl.cpp ('k') | third_party/WebKit/Source/web/OpenedFrameTracker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698