| 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_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 virtual bool HandleMouseEvent(views::Textfield* sender, | 136 virtual bool HandleMouseEvent(views::Textfield* sender, |
| 137 const ui::MouseEvent& key_event) OVERRIDE; | 137 const ui::MouseEvent& key_event) OVERRIDE; |
| 138 | 138 |
| 139 // views::FocusChangeListener implementation. | 139 // views::FocusChangeListener implementation. |
| 140 virtual void OnWillChangeFocus(views::View* focused_before, | 140 virtual void OnWillChangeFocus(views::View* focused_before, |
| 141 views::View* focused_now) OVERRIDE; | 141 views::View* focused_now) OVERRIDE; |
| 142 virtual void OnDidChangeFocus(views::View* focused_before, | 142 virtual void OnDidChangeFocus(views::View* focused_before, |
| 143 views::View* focused_now) OVERRIDE; | 143 views::View* focused_now) OVERRIDE; |
| 144 | 144 |
| 145 // views::ComboboxListener implementation: | 145 // views::ComboboxListener implementation: |
| 146 virtual void OnSelectedIndexChanged(views::Combobox* combobox) OVERRIDE; | 146 virtual void OnPerformAction(views::Combobox* combobox) OVERRIDE; |
| 147 | 147 |
| 148 // views::StyledLabelListener implementation: | 148 // views::StyledLabelListener implementation: |
| 149 virtual void StyledLabelLinkClicked(const gfx::Range& range, int event_flags) | 149 virtual void StyledLabelLinkClicked(const gfx::Range& range, int event_flags) |
| 150 OVERRIDE; | 150 OVERRIDE; |
| 151 | 151 |
| 152 // views::MenuButtonListener implementation. | 152 // views::MenuButtonListener implementation. |
| 153 virtual void OnMenuButtonClicked(views::View* source, | 153 virtual void OnMenuButtonClicked(views::View* source, |
| 154 const gfx::Point& point) OVERRIDE; | 154 const gfx::Point& point) OVERRIDE; |
| 155 | 155 |
| 156 protected: | 156 protected: |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 | 673 |
| 674 // Delegate for the sign-in dialog's webview. | 674 // Delegate for the sign-in dialog's webview. |
| 675 scoped_ptr<AutofillDialogSignInDelegate> sign_in_delegate_; | 675 scoped_ptr<AutofillDialogSignInDelegate> sign_in_delegate_; |
| 676 | 676 |
| 677 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); | 677 DISALLOW_COPY_AND_ASSIGN(AutofillDialogViews); |
| 678 }; | 678 }; |
| 679 | 679 |
| 680 } // namespace autofill | 680 } // namespace autofill |
| 681 | 681 |
| 682 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ | 682 #endif // CHROME_BROWSER_UI_VIEWS_AUTOFILL_AUTOFILL_DIALOG_VIEWS_H_ |
| OLD | NEW |