Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(407)

Side by Side Diff: chrome/browser/ui/views/profiles/profile_chooser_view.h

Issue 476763007: [Win] Add tab and keyboard navigation to the new avatar bubble (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/views/profiles/profile_chooser_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
89 virtual void Init() OVERRIDE; 89 virtual void Init() OVERRIDE;
90 virtual void WindowClosing() OVERRIDE; 90 virtual void WindowClosing() OVERRIDE;
91 91
92 // views::ButtonListener: 92 // views::ButtonListener:
93 virtual void ButtonPressed(views::Button* sender, 93 virtual void ButtonPressed(views::Button* sender,
94 const ui::Event& event) OVERRIDE; 94 const ui::Event& event) OVERRIDE;
95 95
96 // views::LinkListener: 96 // views::LinkListener:
97 virtual void LinkClicked(views::Link* sender, int event_flags) OVERRIDE; 97 virtual void LinkClicked(views::Link* sender, int event_flags) OVERRIDE;
98 98
99 // views::StyledLabelListener implementation. 99 // views::StyledLabelListener:
100 virtual void StyledLabelLinkClicked( 100 virtual void StyledLabelLinkClicked(
101 const gfx::Range& range, int event_flags) OVERRIDE; 101 const gfx::Range& range, int event_flags) OVERRIDE;
102 102
103 // views::TextfieldController: 103 // views::TextfieldController:
104 virtual bool HandleKeyEvent(views::Textfield* sender, 104 virtual bool HandleKeyEvent(views::Textfield* sender,
105 const ui::KeyEvent& key_event) OVERRIDE; 105 const ui::KeyEvent& key_event) OVERRIDE;
106 106
107 // AvatarMenuObserver: 107 // AvatarMenuObserver:
108 virtual void OnAvatarMenuChanged(AvatarMenu* avatar_menu) OVERRIDE; 108 virtual void OnAvatarMenuChanged(AvatarMenu* avatar_menu) OVERRIDE;
109 109
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 // The current tutorial mode. 249 // The current tutorial mode.
250 profiles::TutorialMode tutorial_mode_; 250 profiles::TutorialMode tutorial_mode_;
251 251
252 // The GAIA service type provided in the response header. 252 // The GAIA service type provided in the response header.
253 signin::GAIAServiceType gaia_service_type_; 253 signin::GAIAServiceType gaia_service_type_;
254 254
255 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView); 255 DISALLOW_COPY_AND_ASSIGN(ProfileChooserView);
256 }; 256 };
257 257
258 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_ 258 #endif // CHROME_BROWSER_UI_VIEWS_PROFILES_PROFILE_CHOOSER_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/profiles/profile_chooser_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698