| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "chrome/browser/autofill/personal_data_manager.h" | 10 #include "chrome/browser/autofill/personal_data_manager.h" |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 // address data. | 61 // address data. |
| 62 void SetAddress(const ListValue* args); | 62 void SetAddress(const ListValue* args); |
| 63 | 63 |
| 64 // Adds or updates a credit card, depending on the GUID of the profile. If the | 64 // Adds or updates a credit card, depending on the GUID of the profile. If the |
| 65 // GUID is empty, a new credit card is added to the WebDatabase; otherwise, | 65 // GUID is empty, a new credit card is added to the WebDatabase; otherwise, |
| 66 // the credit card with the matching GUID is updated. Called from WebUI. | 66 // the credit card with the matching GUID is updated. Called from WebUI. |
| 67 // |args| - an array containing the GUID of the credit card followed by the | 67 // |args| - an array containing the GUID of the credit card followed by the |
| 68 // credit card data. | 68 // credit card data. |
| 69 void SetCreditCard(const ListValue* args); | 69 void SetCreditCard(const ListValue* args); |
| 70 | 70 |
| 71 // Validates a list of phone/fax numbers. The resulting validated list of | |
| 72 // numbers is then sent back to the WebUI. | |
| 73 // |args| - an array containing the index of the modified or added number, the | |
| 74 // array of numbers, and the country code string set on the profile. | |
| 75 void ValidatePhoneNumbers(const ListValue* args); | |
| 76 void ValidateFaxNumbers(const ListValue* args); | |
| 77 | |
| 78 // The personal data manager, used to load Autofill profiles and credit cards. | 71 // The personal data manager, used to load Autofill profiles and credit cards. |
| 79 // Unowned pointer, may not be NULL. | 72 // Unowned pointer, may not be NULL. |
| 80 PersonalDataManager* personal_data_; | 73 PersonalDataManager* personal_data_; |
| 81 | 74 |
| 82 DISALLOW_COPY_AND_ASSIGN(AutofillOptionsHandler); | 75 DISALLOW_COPY_AND_ASSIGN(AutofillOptionsHandler); |
| 83 }; | 76 }; |
| 84 | 77 |
| 85 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ | 78 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_AUTOFILL_OPTIONS_HANDLER_H_ |
| OLD | NEW |