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

Unified Diff: third_party/WebKit/Source/core/html/imports/HTMLImport.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/imports/HTMLImport.cpp
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImport.cpp b/third_party/WebKit/Source/core/html/imports/HTMLImport.cpp
index 758dfb2945ded2f700453fe2a0e4e71d04e8db5a..4d7ff257e9e6fd23cb7c7db6100f06afb4ccbfca 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImport.cpp
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImport.cpp
@@ -99,7 +99,7 @@ void HTMLImport::recalcTreeState(HTMLImport* root) {
i->m_state = HTMLImportStateResolver(i).resolve();
HTMLImportState newState = i->state();
- HTMLImportState oldState = snapshot.get(i);
+ HTMLImportState oldState = snapshot.at(i);
// Once the state reaches Ready, it shouldn't go back.
DCHECK(!oldState.isReady() || oldState <= newState);
if (newState != oldState)

Powered by Google App Engine
This is Rietveld 408576698