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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.cpp

Issue 2459003003: WTF/std normalization: replace WTF::Vector::removeLast with ::pop_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/inspector/InspectorDOMDebuggerAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.cpp
index 9358739de1de10760e563547d5f14c4b8dab4e3b..606b0dfa8ca714351c6b050d3b04e42d85d3c1f8 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorDOMDebuggerAgent.cpp
@@ -370,7 +370,7 @@ void InspectorDOMDebuggerAgent::didRemoveDOMNode(Node* node) {
HeapVector<Member<Node>> stack(1, InspectorDOMAgent::innerFirstChild(node));
do {
Node* node = stack.last();
- stack.removeLast();
+ stack.pop_back();
if (!node)
continue;
m_domBreakpoints.remove(node);

Powered by Google App Engine
This is Rietveld 408576698