| Index: chrome/browser/dom_ui/autofill_options_handler.h
|
| diff --git a/chrome/browser/dom_ui/autofill_options_handler.h b/chrome/browser/dom_ui/autofill_options_handler.h
|
| index 247eaef2a904b0ab585f4353cee96cc3e8bb1eeb..73a107440b08c35f8baead780a3a7115010844c5 100644
|
| --- a/chrome/browser/dom_ui/autofill_options_handler.h
|
| +++ b/chrome/browser/dom_ui/autofill_options_handler.h
|
| @@ -28,6 +28,14 @@ class AutoFillOptionsHandler : public OptionsPageUIHandler,
|
| // Loads AutoFill addresses and credit cards using the PersonalDataManager.
|
| void LoadAutoFillData();
|
|
|
| + // Removes an address from the WebDatabase. Called from DOMUI.
|
| + // |args| - an integer, the unique ID of the address to remove.
|
| + void RemoveAddress(const ListValue* args);
|
| +
|
| + // Removes a credit card from the WebDatabase. Called from DOMUI.
|
| + // |args| - an integer, the unique ID of the credit card to remove.
|
| + void RemoveCreditCard(const ListValue* args);
|
| +
|
| // The personal data manager, used to load AutoFill profiles and credit cards.
|
| // Unowned pointer, may not be NULL.
|
| PersonalDataManager* personal_data_;
|
|
|