OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_AUTOFILL_AUTOFILL_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_H_ |
6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_H_ | 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "chrome/browser/autofill/autofill_profile.h" | 10 #include "chrome/browser/autofill/autofill_profile.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 protected: | 26 protected: |
27 virtual ~AutoFillDialogObserver() {} | 27 virtual ~AutoFillDialogObserver() {} |
28 }; | 28 }; |
29 | 29 |
30 // Shows the AutoFill dialog, which allows the user to edit profile information. | 30 // Shows the AutoFill dialog, which allows the user to edit profile information. |
31 // |profile| is profile from which you can get vectors of of autofill profiles | 31 // |profile| is profile from which you can get vectors of of autofill profiles |
32 // that contains the current profile information and credit cards. | 32 // that contains the current profile information and credit cards. |
33 // The dialog fills out the profile fields using this data. |observer| will be | 33 // The dialog fills out the profile fields using this data. |observer| will be |
34 // notified by OnAutoFillDialogAccept when the user has applied changes. | 34 // notified by OnAutoFillDialogAccept when the user has applied changes. |
35 // | 35 // |
36 // The |parent| parameter (currently only used on Windows) specifies the parent | |
37 // view in the view hierarchy. May be NULL on Mac and gtk. | |
38 // | |
39 // Optional parameters |imported_profile| and |imported_credit_card| may be | |
40 // supplied. If they are supplied (non-NULL) they will be used instead of | |
41 // the profile and credit card data retrieved from the PersonalDataManager | |
42 // associated with the |profile|. | |
43 // | |
44 // The PersonalDataManager owns the contents of these vectors. The lifetime of | 36 // The PersonalDataManager owns the contents of these vectors. The lifetime of |
45 // the contents is until the PersonalDataManager replaces them with new data | 37 // the contents is until the PersonalDataManager replaces them with new data |
46 // whenever the web database is updated. | 38 // whenever the web database is updated. |
47 void ShowAutoFillDialog(gfx::NativeView parent, | 39 #if defined(OS_MACOSX) |
| 40 // TODO(dhollowa): update .mm files and remove this. |
| 41 void ShowAutoFillDialog(AutoFillDialogObserver* observer, |
| 42 const std::vector<AutoFillProfile*>& profiles, |
| 43 const std::vector<CreditCard*>& credit_cards, |
| 44 Profile* profile); |
| 45 #else |
| 46 void ShowAutoFillDialog(gfx::NativeWindow parent, |
48 AutoFillDialogObserver* observer, | 47 AutoFillDialogObserver* observer, |
49 Profile* profile, | 48 Profile* profile); |
50 AutoFillProfile* imported_profile, | 49 #endif |
51 CreditCard* imported_credit_card); | |
52 | 50 |
53 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_H_ | 51 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_DIALOG_H_ |
OLD | NEW |