| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 |
| 11 #include "views/controls/button/button.h" | 11 #include "views/controls/button/button.h" |
| 12 #include "views/controls/link_listener.h" | 12 #include "views/controls/link_listener.h" |
| 13 #include "views/view.h" | 13 #include "views/view.h" |
| 14 | 14 |
| 15 class SkBitmap; | 15 class SkBitmap; |
| 16 | 16 |
| 17 namespace views { | 17 namespace views { |
| 18 class ImageView; | 18 class ImageView; |
| 19 class TextButton; | 19 class TextButton; |
| 20 class Throbber; | |
| 21 } // namespace views | 20 } // namespace views |
| 22 | 21 |
| 23 namespace chromeos { | 22 namespace chromeos { |
| 24 | 23 |
| 25 class SignoutView; | 24 class SignoutView; |
| 26 class PodImageView; | 25 class PodImageView; |
| 27 | 26 |
| 28 class UserView : public views::View, | 27 class UserView : public views::View, |
| 29 public views::LinkListener, | 28 public views::LinkListener, |
| 30 public views::ButtonListener { | 29 public views::ButtonListener { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 85 |
| 87 SignoutView* signout_view_; | 86 SignoutView* signout_view_; |
| 88 bool ignore_signout_click_; | 87 bool ignore_signout_click_; |
| 89 PodImageView* image_view_; | 88 PodImageView* image_view_; |
| 90 | 89 |
| 91 views::TextButton* remove_button_; | 90 views::TextButton* remove_button_; |
| 92 | 91 |
| 93 DISALLOW_COPY_AND_ASSIGN(UserView); | 92 DISALLOW_COPY_AND_ASSIGN(UserView); |
| 94 }; | 93 }; |
| 95 | 94 |
| 96 } // chromeos | 95 } // namespace chromeos |
| 97 | 96 |
| 98 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_ | 97 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_VIEW_H_ |
| OLD | NEW |