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

Unified Diff: third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.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/HTMLImportTreeRoot.cpp
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.cpp b/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.cpp
index 0e2dcd534145c0e70aadf326be7bbcefecddf2d2..d23db10b4e87d4744c387a341278cab934fbd4cb 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.cpp
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportTreeRoot.cpp
@@ -63,7 +63,7 @@ void HTMLImportTreeRoot::scheduleRecalcState() {
HTMLImportChild* HTMLImportTreeRoot::add(HTMLImportChild* child) {
m_imports.append(child);
- return m_imports.last().get();
+ return m_imports.back().get();
}
HTMLImportChild* HTMLImportTreeRoot::find(const KURL& url) const {

Powered by Google App Engine
This is Rietveld 408576698