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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 virtual bool OnAccept() OVERRIDE; | 165 virtual bool OnAccept() OVERRIDE; |
166 virtual Profile* profile() OVERRIDE; | 166 virtual Profile* profile() OVERRIDE; |
167 virtual content::WebContents* GetWebContents() OVERRIDE; | 167 virtual content::WebContents* GetWebContents() OVERRIDE; |
168 | 168 |
169 // AutofillPopupDelegate implementation. | 169 // AutofillPopupDelegate implementation. |
170 virtual void OnPopupShown( | 170 virtual void OnPopupShown( |
171 content::RenderWidgetHost::KeyPressEventCallback* callback) OVERRIDE; | 171 content::RenderWidgetHost::KeyPressEventCallback* callback) OVERRIDE; |
172 virtual void OnPopupHidden( | 172 virtual void OnPopupHidden( |
173 content::RenderWidgetHost::KeyPressEventCallback* callback) OVERRIDE; | 173 content::RenderWidgetHost::KeyPressEventCallback* callback) OVERRIDE; |
174 virtual bool ShouldRepostEvent(const ui::MouseEvent& event) OVERRIDE; | 174 virtual bool ShouldRepostEvent(const ui::MouseEvent& event) OVERRIDE; |
175 virtual void DidSelectSuggestion(int identifier) OVERRIDE; | 175 virtual void DidPreselectSuggestion(int identifier) OVERRIDE; |
176 virtual void DidAcceptSuggestion(const string16& value, | 176 virtual void DidAcceptSuggestion(const string16& value, |
177 int identifier) OVERRIDE; | 177 int identifier) OVERRIDE; |
178 virtual void RemoveSuggestion(const string16& value, | 178 virtual void RemoveSuggestion(const string16& value, |
179 int identifier) OVERRIDE; | 179 int identifier) OVERRIDE; |
180 virtual void ClearPreviewedForm() OVERRIDE; | 180 virtual void ClearPreviewedForm() OVERRIDE; |
181 | 181 |
182 // content::NotificationObserver implementation. | 182 // content::NotificationObserver implementation. |
183 virtual void Observe(int type, | 183 virtual void Observe(int type, |
184 const content::NotificationSource& source, | 184 const content::NotificationSource& source, |
185 const content::NotificationDetails& details) OVERRIDE; | 185 const content::NotificationDetails& details) OVERRIDE; |
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 | 759 |
760 // A username string we display in the card scrambling/generated overlay. | 760 // A username string we display in the card scrambling/generated overlay. |
761 base::string16 submitted_cardholder_name_; | 761 base::string16 submitted_cardholder_name_; |
762 | 762 |
763 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); | 763 DISALLOW_COPY_AND_ASSIGN(AutofillDialogControllerImpl); |
764 }; | 764 }; |
765 | 765 |
766 } // namespace autofill | 766 } // namespace autofill |
767 | 767 |
768 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ | 768 #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_DIALOG_CONTROLLER_IMPL_H_ |
OLD | NEW |