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

Unified Diff: third_party/WebKit/Source/core/workers/ParentFrameTaskRunners.cpp

Issue 2709033003: Migrate WTF::HashMap::get() to ::at() (Closed)
Patch Set: rebase 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/core/workers/ParentFrameTaskRunners.cpp
diff --git a/third_party/WebKit/Source/core/workers/ParentFrameTaskRunners.cpp b/third_party/WebKit/Source/core/workers/ParentFrameTaskRunners.cpp
index ef83daafe7ac9ee5ee25813ddb788fa996467178..dc3b11f7cec57aaf0846c3d972aedab3692653b5 100644
--- a/third_party/WebKit/Source/core/workers/ParentFrameTaskRunners.cpp
+++ b/third_party/WebKit/Source/core/workers/ParentFrameTaskRunners.cpp
@@ -27,7 +27,7 @@ ParentFrameTaskRunners::ParentFrameTaskRunners(LocalFrame* frame)
RefPtr<WebTaskRunner> ParentFrameTaskRunners::get(TaskType type) {
MutexLocker lock(m_taskRunnersMutex);
- return m_taskRunners.get(type);
+ return m_taskRunners.at(type);
}
DEFINE_TRACE(ParentFrameTaskRunners) {
« no previous file with comments | « third_party/WebKit/Source/core/timing/PerformanceUserTiming.cpp ('k') | third_party/WebKit/Source/core/workers/Worklet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698