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

Side by Side Diff: chrome/browser/chromeos/login/user_view.h

Issue 5966008: Show hand cursor only on small user pods and labels (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use_small_shape is a constructor argument Created 9 years, 11 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_CHROMEOS_LOGIN_USER_VIEW_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 20 matching lines...) Expand all
31 public: 31 public:
32 class Delegate { 32 class Delegate {
33 public: 33 public:
34 virtual ~Delegate() {} 34 virtual ~Delegate() {}
35 35
36 // Notifies that user pressed signout button on screen locker. 36 // Notifies that user pressed signout button on screen locker.
37 virtual void OnSignout() {} 37 virtual void OnSignout() {}
38 38
39 // Notifies that user would like to remove this user from login screen. 39 // Notifies that user would like to remove this user from login screen.
40 virtual void OnRemoveUser() {} 40 virtual void OnRemoveUser() {}
41
42 // Returns true if current user is selected.
43 virtual bool IsUserSelected() const = 0;
41 }; 44 };
42 45
43 // Creates UserView for login screen (|is_login| == true) or screen locker. 46 // Creates UserView for login screen (|is_login| == true) or screen locker.
44 // On login screen this will have remove button. 47 // On login screen this will have remove button.
45 // On screen locker it will have sign out button. |need_background| is needed 48 // On screen locker it will have sign out button. |need_background| is needed
46 // to show image with transparent areas. 49 // to show image with transparent areas.
47 UserView(Delegate* delegate, bool is_login, bool need_background); 50 UserView(Delegate* delegate, bool is_login, bool need_background);
48 51
49 // view::View overrides. 52 // view::View overrides.
50 virtual gfx::Size GetPreferredSize(); 53 virtual gfx::Size GetPreferredSize();
(...skipping 27 matching lines...) Expand all
78 PodImageView* image_view_; 81 PodImageView* image_view_;
79 82
80 views::TextButton* remove_button_; 83 views::TextButton* remove_button_;
81 84
82 DISALLOW_COPY_AND_ASSIGN(UserView); 85 DISALLOW_COPY_AND_ASSIGN(UserView);
83 }; 86 };
84 87
85 } // chromeos 88 } // chromeos
86 89
87 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_ 90 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/user_controller.cc ('k') | chrome/browser/chromeos/login/user_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698