| Index: chrome/browser/autofill/personal_data_manager.h
|
| diff --git a/chrome/browser/autofill/personal_data_manager.h b/chrome/browser/autofill/personal_data_manager.h
|
| index f2926ef1d43c9c661280941a1ec69f714bb83747..15177458d984bb30446baac4de91fcbdccc5bb93 100644
|
| --- a/chrome/browser/autofill/personal_data_manager.h
|
| +++ b/chrome/browser/autofill/personal_data_manager.h
|
| @@ -85,7 +85,7 @@ class PersonalDataManager
|
| void UpdateProfile(const AutofillProfile& profile);
|
|
|
| // Removes the profile represented by |guid|.
|
| - void RemoveProfile(const std::string& guid);
|
| + virtual void RemoveProfile(const std::string& guid);
|
|
|
| // Returns the profile with the specified |guid|, or NULL if there is no
|
| // profile with the specified |guid|.
|
| @@ -98,7 +98,7 @@ class PersonalDataManager
|
| void UpdateCreditCard(const CreditCard& credit_card);
|
|
|
| // Removes the credit card represented by |guid|.
|
| - void RemoveCreditCard(const std::string& guid);
|
| + virtual void RemoveCreditCard(const std::string& guid);
|
|
|
| // Returns the credit card with the specified |guid|, or NULL if there is
|
| // no credit card with the specified |guid|.
|
|
|