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

Unified Diff: chrome/browser/autofill/personal_data_manager.h

Issue 10073018: Add Delete Support to New Autofill UI (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 8 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: 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|.

Powered by Google App Engine
This is Rietveld 408576698