| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 5 #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
| 6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 6 #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 virtual int GetDialogButtons() const OVERRIDE; | 118 virtual int GetDialogButtons() const OVERRIDE; |
| 119 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE; | 119 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE; |
| 120 virtual DialogOverlayState GetDialogOverlay() OVERRIDE; | 120 virtual DialogOverlayState GetDialogOverlay() OVERRIDE; |
| 121 virtual const std::vector<gfx::Range>& LegalDocumentLinks() OVERRIDE; | 121 virtual const std::vector<gfx::Range>& LegalDocumentLinks() OVERRIDE; |
| 122 virtual bool SectionIsActive(DialogSection section) const OVERRIDE; | 122 virtual bool SectionIsActive(DialogSection section) const OVERRIDE; |
| 123 virtual const DetailInputs& RequestedFieldsForSection(DialogSection section) | 123 virtual const DetailInputs& RequestedFieldsForSection(DialogSection section) |
| 124 const OVERRIDE; | 124 const OVERRIDE; |
| 125 virtual ui::ComboboxModel* ComboboxModelForAutofillType( | 125 virtual ui::ComboboxModel* ComboboxModelForAutofillType( |
| 126 ServerFieldType type) OVERRIDE; | 126 ServerFieldType type) OVERRIDE; |
| 127 virtual ui::MenuModel* MenuModelForSection(DialogSection section) OVERRIDE; | 127 virtual ui::MenuModel* MenuModelForSection(DialogSection section) OVERRIDE; |
| 128 virtual base::string16 LabelForSection(DialogSection section) const OVERRIDE; | 128 virtual SectionLabel LabelForSection(DialogSection section) const OVERRIDE; |
| 129 virtual SuggestionState SuggestionStateForSection( | 129 virtual SuggestionState SuggestionStateForSection( |
| 130 DialogSection section) OVERRIDE; | 130 DialogSection section) OVERRIDE; |
| 131 virtual FieldIconMap IconsForFields(const FieldValueMap& user_inputs) | 131 virtual FieldIconMap IconsForFields(const FieldValueMap& user_inputs) |
| 132 const OVERRIDE; | 132 const OVERRIDE; |
| 133 virtual bool FieldControlsIcons(ServerFieldType type) const OVERRIDE; | 133 virtual bool FieldControlsIcons(ServerFieldType type) const OVERRIDE; |
| 134 virtual base::string16 TooltipForField(ServerFieldType type) const OVERRIDE; | 134 virtual base::string16 TooltipForField(ServerFieldType type) const OVERRIDE; |
| 135 virtual bool InputIsEditable(const DetailInput& input, DialogSection section) | 135 virtual bool InputIsEditable(const DetailInput& input, DialogSection section) |
| 136 OVERRIDE; | 136 OVERRIDE; |
| 137 virtual base::string16 InputValidityMessage(DialogSection section, | 137 virtual base::string16 InputValidityMessage(DialogSection section, |
| 138 ServerFieldType type, | 138 ServerFieldType type, |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 | 773 |
| 774 // A username string we display in the card scrambling/generated overlay. | 774 // A username string we display in the card scrambling/generated overlay. |
| 775 base::string16 submitted_cardholder_name_; | 775 base::string16 submitted_cardholder_name_; |
| 776 | 776 |
| 777 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); | 777 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); |
| 778 }; | 778 }; |
| 779 | 779 |
| 780 } // namespace autofill | 780 } // namespace autofill |
| 781 | 781 |
| 782 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 782 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
| OLD | NEW |