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

Unified Diff: third_party/WebKit/Source/core/html/track/vtt/VTTCue.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/html/track/vtt/VTTCue.cpp
diff --git a/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp b/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
index 6311f3018758bc7f50e2fd7f916467c74333d208..ec2b0ea67d18c4ed21e7c843d3595bac83922b69 100644
--- a/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
+++ b/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
@@ -1073,7 +1073,7 @@ void VTTCue::parseSettings(const VTTRegionMap* regionMap,
}
case RegionId:
if (regionMap)
- m_region = regionMap->get(input.extractString(valueRun));
+ m_region = regionMap->at(input.extractString(valueRun));
break;
case None:
break;

Powered by Google App Engine
This is Rietveld 408576698