diff options
author | georgey@chromium.org <georgey@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-11 22:34:03 +0000 |
---|---|---|
committer | georgey@chromium.org <georgey@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-11 22:34:03 +0000 |
commit | d667f1e12b4b62479bb62a9ded12f54dfaddf308 (patch) | |
tree | d8020830c9e0d8e3128a568e4a94ff558fe50aa7 /chrome/browser/views/autofill_profiles_view_win.h | |
parent | fc186cac9263f1bcabe8772f12d96107ed467553 (diff) | |
download | chromium_src-d667f1e12b4b62479bb62a9ded12f54dfaddf308.zip chromium_src-d667f1e12b4b62479bb62a9ded12f54dfaddf308.tar.gz chromium_src-d667f1e12b4b62479bb62a9ded12f54dfaddf308.tar.bz2 |
Fix 41010 on Windows: AutoFill profile shouldn't be saved when cancelled during initial setup
BUG=41010
TEST=in the bug.
Review URL: http://codereview.chromium.org/2015008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46970 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/autofill_profiles_view_win.h')
-rw-r--r-- | chrome/browser/views/autofill_profiles_view_win.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/chrome/browser/views/autofill_profiles_view_win.h b/chrome/browser/views/autofill_profiles_view_win.h index cd0b38a..8b32e631 100644 --- a/chrome/browser/views/autofill_profiles_view_win.h +++ b/chrome/browser/views/autofill_profiles_view_win.h @@ -61,7 +61,9 @@ class AutoFillProfilesView : public views::View, static int Show(gfx::NativeWindow parent, AutoFillDialogObserver* observer, PersonalDataManager* personal_data_manager, - PrefService* preferences); + PrefService* preferences, + AutoFillProfile* imported_profile, + CreditCard* imported_credit_card); protected: enum EditableSetType { @@ -173,7 +175,9 @@ class AutoFillProfilesView : public views::View, AutoFillProfilesView(AutoFillDialogObserver* observer, PersonalDataManager* personal_data_manager, - PrefService* preferences); + PrefService* preferences, + AutoFillProfile* imported_profile, + CreditCard* imported_credit_card); void Init(); void GetData(); |