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

Unified Diff: third_party/WebKit/Source/core/dom/shadow/DistributedNodes.h

Issue 2470233009: WTF/std normalization: replace WTF::Vector::first() with ::front() (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/dom/shadow/DistributedNodes.h
diff --git a/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.h b/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.h
index aeee19d2250acdc3d57b9ee6e3035e8944793b55..afba9ac9b54d70162a96969e51884a3aef342403 100644
--- a/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.h
+++ b/third_party/WebKit/Source/core/dom/shadow/DistributedNodes.h
@@ -43,7 +43,7 @@ class DistributedNodes final {
public:
DistributedNodes() {}
- Node* first() const { return m_nodes.first(); }
+ Node* first() const { return m_nodes.front(); }
Node* last() const { return m_nodes.back(); }
Node* at(size_t index) const { return m_nodes.at(index); }

Powered by Google App Engine
This is Rietveld 408576698