| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 views::BubbleBorder::Arrow arrow, | 81 views::BubbleBorder::Arrow arrow, |
| 82 Browser* browser, | 82 Browser* browser, |
| 83 profiles::BubbleViewMode view_mode, | 83 profiles::BubbleViewMode view_mode, |
| 84 profiles::TutorialMode tutorial_mode, | 84 profiles::TutorialMode tutorial_mode, |
| 85 signin::GAIAServiceType service_type); | 85 signin::GAIAServiceType service_type); |
| 86 virtual ~ProfileChooserView(); | 86 virtual ~ProfileChooserView(); |
| 87 | 87 |
| 88 // views::BubbleDelegateView: | 88 // views::BubbleDelegateView: |
| 89 virtual void Init() OVERRIDE; | 89 virtual void Init() OVERRIDE; |
| 90 virtual void WindowClosing() OVERRIDE; | 90 virtual void WindowClosing() OVERRIDE; |
| 91 virtual bool AcceleratorPressed(const ui::Accelerator& accelerator) OVERRIDE; |
| 91 | 92 |
| 92 // views::ButtonListener: | 93 // views::ButtonListener: |
| 93 virtual void ButtonPressed(views::Button* sender, | 94 virtual void ButtonPressed(views::Button* sender, |
| 94 const ui::Event& event) OVERRIDE; | 95 const ui::Event& event) OVERRIDE; |
| 95 | 96 |
| 96 // views::LinkListener: | 97 // views::LinkListener: |
| 97 virtual void LinkClicked(views::Link* sender, int event_flags) OVERRIDE; | 98 virtual void LinkClicked(views::Link* sender, int event_flags) OVERRIDE; |
| 98 | 99 |
| 99 // views::StyledLabelListener: | 100 // views::StyledLabelListener: |
| 100 virtual void StyledLabelLinkClicked( | 101 virtual void StyledLabelLinkClicked( |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 // The current tutorial mode. | 251 // The current tutorial mode. |
| 251 profiles::TutorialMode tutorial_mode_; | 252 profiles::TutorialMode tutorial_mode_; |
| 252 | 253 |
| 253 // The GAIA service type provided in the response header. | 254 // The GAIA service type provided in the response header. |
| 254 signin::GAIAServiceType gaia_service_type_; | 255 signin::GAIAServiceType gaia_service_type_; |
| 255 | 256 |
| 256 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); | 257 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); |
| 257 }; | 258 }; |
| 258 | 259 |
| 259 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 260 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
| OLD | NEW |