| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 84 |
| 85 // views::BubbleDialogDelegateView: | 85 // views::BubbleDialogDelegateView: |
| 86 void Init() override; | 86 void Init() override; |
| 87 void OnNativeThemeChanged(const ui::NativeTheme* native_theme) override; | 87 void OnNativeThemeChanged(const ui::NativeTheme* native_theme) override; |
| 88 void WindowClosing() override; | 88 void WindowClosing() override; |
| 89 bool AcceleratorPressed(const ui::Accelerator& accelerator) override; | 89 bool AcceleratorPressed(const ui::Accelerator& accelerator) override; |
| 90 views::View* GetInitiallyFocusedView() override; | 90 views::View* GetInitiallyFocusedView() override; |
| 91 int GetDialogButtons() const override; | 91 int GetDialogButtons() const override; |
| 92 | 92 |
| 93 // content::WebContentsDelegate: | 93 // content::WebContentsDelegate: |
| 94 bool HandleContextMenu(const content::ContextMenuParams& params) override; | 94 bool HandleContextMenu(RenderFrameHost* render_frame_host, |
| 95 const content::ContextMenuParams& params) override; |
| 95 | 96 |
| 96 // views::ButtonListener: | 97 // views::ButtonListener: |
| 97 void ButtonPressed(views::Button* sender, const ui::Event& event) override; | 98 void ButtonPressed(views::Button* sender, const ui::Event& event) override; |
| 98 | 99 |
| 99 // views::LinkListener: | 100 // views::LinkListener: |
| 100 void LinkClicked(views::Link* sender, int event_flags) override; | 101 void LinkClicked(views::Link* sender, int event_flags) override; |
| 101 | 102 |
| 102 // views::StyledLabelListener: | 103 // views::StyledLabelListener: |
| 103 void StyledLabelLinkClicked(views::StyledLabel* label, | 104 void StyledLabelLinkClicked(views::StyledLabel* label, |
| 104 const gfx::Range& range, | 105 const gfx::Range& range, |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 // The GAIA service type provided in the response header. | 276 // The GAIA service type provided in the response header. |
| 276 signin::GAIAServiceType gaia_service_type_; | 277 signin::GAIAServiceType gaia_service_type_; |
| 277 | 278 |
| 278 // The current access point of sign in. | 279 // The current access point of sign in. |
| 279 const signin_metrics::AccessPoint access_point_; | 280 const signin_metrics::AccessPoint access_point_; |
| 280 | 281 |
| 281 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); | 282 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); |
| 282 }; | 283 }; |
| 283 | 284 |
| 284 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ | 285 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ |
| OLD | NEW |