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 e923fa723a14ee1ceb14ebf232cd742eaba77b3c..e3c9e92ddf4ffbae9e69f7b23217347add3ec1ba 100644 |
--- a/chrome/browser/autofill/personal_data_manager.h |
+++ b/chrome/browser/autofill/personal_data_manager.h |
@@ -100,6 +100,12 @@ class PersonalDataManager |
// ID of newly-added profiles. |
void SetCreditCards(std::vector<CreditCard>* credit_cards); |
+ // Removes the profile represented by |unique_id|. |
+ void RemoveProfile(int unique_id); |
+ |
+ // Removes the credit card represented by |unique_id|. |
+ void RemoveCreditCard(int unique_id); |
+ |
// Gets the possible field types for the given text, determined by matching |
// the text with all known personal information and returning matching types. |
void GetPossibleFieldTypes(const string16& text, |