| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 // content::WebContentsDelegate: | 89 // content::WebContentsDelegate: |
| 90 bool HandleContextMenu(const content::ContextMenuParams& params) override; | 90 bool HandleContextMenu(const content::ContextMenuParams& params) override; |
| 91 | 91 |
| 92 // views::ButtonListener: | 92 // views::ButtonListener: |
| 93 void ButtonPressed(views::Button* sender, const ui::Event& event) override; | 93 void ButtonPressed(views::Button* sender, const ui::Event& event) override; |
| 94 | 94 |
| 95 // views::LinkListener: | 95 // views::LinkListener: |
| 96 void LinkClicked(views::Link* sender, int event_flags) override; | 96 void LinkClicked(views::Link* sender, int event_flags) override; |
| 97 | 97 |
| 98 // views::StyledLabelListener: | 98 // views::StyledLabelListener: |
| 99 void StyledLabelLinkClicked(const gfx::Range& range, | 99 void StyledLabelLinkClicked(views::StyledLabel& label, |
| 100 const gfx::Range& range, |
| 100 int event_flags) override; | 101 int event_flags) override; |
| 101 | 102 |
| 102 // views::TextfieldController: | 103 // views::TextfieldController: |
| 103 bool HandleKeyEvent(views::Textfield* sender, | 104 bool HandleKeyEvent(views::Textfield* sender, |
| 104 const ui::KeyEvent& key_event) override; | 105 const ui::KeyEvent& key_event) override; |
| 105 | 106 |
| 106 // AvatarMenuObserver: | 107 // AvatarMenuObserver: |
| 107 void OnAvatarMenuChanged(AvatarMenu* avatar_menu) override; | 108 void OnAvatarMenuChanged(AvatarMenu* avatar_menu) override; |
| 108 | 109 |
| 109 // OAuth2TokenService::Observer overrides. | 110 // OAuth2TokenService::Observer overrides. |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 // The current tutorial mode. | 267 // The current tutorial mode. |
| 267 profiles::TutorialMode tutorial_mode_; | 268 profiles::TutorialMode tutorial_mode_; |
| 268 | 269 |
| 269 // The GAIA service type provided in the response header. | 270 // The GAIA service type provided in the response header. |
| 270 signin::GAIAServiceType gaia_service_type_; | 271 signin::GAIAServiceType gaia_service_type_; |
| 271 | 272 |
| 272 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); | 273 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); |
| 273 }; | 274 }; |
| 274 | 275 |
| 275 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 276 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
| OLD | NEW |