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

Unified Diff: third_party/WebKit/Source/core/html/imports/HTMLImportsController.cpp

Issue 2502413004: WTF/std normalization: replace WTF::Vector::last with ::back (Closed)
Patch Set: rebase Created 4 years, 1 month 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/HTMLImportsController.cpp
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportsController.cpp b/third_party/WebKit/Source/core/html/imports/HTMLImportsController.cpp
index 35cc2a3ddf38be3c90f8e6d265dd4622b2f7f3ca..76192bc40505fe648c8f12b47a864f279cfbd41a 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportsController.cpp
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportsController.cpp
@@ -134,7 +134,7 @@ bool HTMLImportsController::shouldBlockScriptExecution(
HTMLImportLoader* HTMLImportsController::createLoader() {
m_loaders.append(HTMLImportLoader::create(this));
- return m_loaders.last().get();
+ return m_loaders.back().get();
}
HTMLImportLoader* HTMLImportsController::loaderFor(

Powered by Google App Engine
This is Rietveld 408576698