| Index: chrome/browser/ui/webui/options/autofill_options_handler.h
|
| diff --git a/chrome/browser/ui/webui/options/autofill_options_handler.h b/chrome/browser/ui/webui/options/autofill_options_handler.h
|
| index dd9a0f64963895cacf95d0dcedabbce1dae2842c..d7a0c24182fd4b66c972c8eaba64ef544a403e72 100644
|
| --- a/chrome/browser/ui/webui/options/autofill_options_handler.h
|
| +++ b/chrome/browser/ui/webui/options/autofill_options_handler.h
|
| @@ -68,6 +68,13 @@ class AutofillOptionsHandler : public OptionsPageUIHandler,
|
| // credit card data.
|
| void SetCreditCard(const ListValue* args);
|
|
|
| + // Validates a list of phone/fax numbers. The resulting validated list of
|
| + // numbers is then sent back to the WebUI.
|
| + // |args| - an array containing the index of the modified or added number, the
|
| + // array of numbers, and the country code string set on the profile.
|
| + void ValidatePhoneNumbers(const ListValue* args);
|
| + void ValidateFaxNumbers(const ListValue* args);
|
| +
|
| // The personal data manager, used to load Autofill profiles and credit cards.
|
| // Unowned pointer, may not be NULL.
|
| PersonalDataManager* personal_data_;
|
|
|