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

Unified Diff: third_party/libaddressinput/chromium/json.cc

Issue 2232743003: third_party/libaddressinput: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « third_party/libaddressinput/chromium/chrome_metadata_source.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libaddressinput/chromium/json.cc
diff --git a/third_party/libaddressinput/chromium/json.cc b/third_party/libaddressinput/chromium/json.cc
index 535173f1f62b981ab127d27f7d0f2e0d864c9e72..f7bc4afb725ec60541651f1daec267136aadd722 100644
--- a/third_party/libaddressinput/chromium/json.cc
+++ b/third_party/libaddressinput/chromium/json.cc
@@ -49,7 +49,7 @@ class Json::JsonImpl {
: owned_(Parse(json, &parser_error_)),
dict_(*owned_) {}
- ~JsonImpl() { STLDeleteElements(&sub_dicts_); }
+ ~JsonImpl() { base::STLDeleteElements(&sub_dicts_); }
bool parser_error() const { return parser_error_; }
« no previous file with comments | « third_party/libaddressinput/chromium/chrome_metadata_source.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698