| 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
|
|
|