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

Unified Diff: components/query_parser/query_parser.cc

Issue 2231753002: components: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more call site Created 4 years, 4 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
« no previous file with comments | « components/proximity_auth/bluetooth_throttler_impl.cc ('k') | components/rappor/rappor_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/query_parser/query_parser.cc
diff --git a/components/query_parser/query_parser.cc b/components/query_parser/query_parser.cc
index 7b5e4eeb13e40385ff9a6dbd45c7234b47e82b34..260a75afd9f6132664bb8932b0186ae98736422f 100644
--- a/components/query_parser/query_parser.cc
+++ b/components/query_parser/query_parser.cc
@@ -184,7 +184,7 @@ class QueryNodeList : public QueryNode {
QueryNodeList::QueryNodeList() {}
QueryNodeList::~QueryNodeList() {
- STLDeleteElements(&children_);
+ base::STLDeleteElements(&children_);
}
void QueryNodeList::AddChild(QueryNode* node) {
« no previous file with comments | « components/proximity_auth/bluetooth_throttler_impl.cc ('k') | components/rappor/rappor_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698