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

Unified Diff: components/autofill/core/browser/webdata/autofill_webdata_backend_impl.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
Index: components/autofill/core/browser/webdata/autofill_webdata_backend_impl.cc
diff --git a/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.cc b/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.cc
index 1bc55bbda26e4d0c8a7129b59e3e1800eb69d769..d4117a0aa110ebf3d5a3c1231a89225dd580810a 100644
--- a/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.cc
+++ b/components/autofill/core/browser/webdata/autofill_webdata_backend_impl.cc
@@ -525,7 +525,7 @@ void AutofillWebDataBackendImpl::DestroyAutofillProfileResult(
const WDResult<std::vector<AutofillProfile*> >* r =
static_cast<const WDResult<std::vector<AutofillProfile*> >*>(result);
std::vector<AutofillProfile*> profiles = r->GetValue();
- STLDeleteElements(&profiles);
+ base::STLDeleteElements(&profiles);
}
void AutofillWebDataBackendImpl::DestroyAutofillCreditCardResult(
@@ -535,7 +535,7 @@ void AutofillWebDataBackendImpl::DestroyAutofillCreditCardResult(
static_cast<const WDResult<std::vector<CreditCard*> >*>(result);
std::vector<CreditCard*> credit_cards = r->GetValue();
- STLDeleteElements(&credit_cards);
+ base::STLDeleteElements(&credit_cards);
}
} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698