| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_USER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_USER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/string16.h" | 12 #include "base/strings/string16.h" |
| 13 #include "chrome/browser/chromeos/login/user_image.h" | 13 #include "chrome/browser/chromeos/login/user_image.h" |
| 14 #include "third_party/skia/include/core/SkBitmap.h" | 14 #include "third_party/skia/include/core/SkBitmap.h" |
| 15 #include "ui/gfx/image/image_skia.h" | 15 #include "ui/gfx/image/image_skia.h" |
| 16 | 16 |
| 17 namespace chromeos { | 17 namespace chromeos { |
| 18 | 18 |
| 19 extern const int kDefaultImagesCount; | 19 extern const int kDefaultImagesCount; |
| 20 | 20 |
| 21 // User context data that is being exchanged between part of ChromeOS | 21 // User context data that is being exchanged between part of ChromeOS |
| 22 // authentication mechanism. Includes credentials: | 22 // authentication mechanism. Includes credentials: |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 | 239 |
| 240 DISALLOW_COPY_AND_ASSIGN(User); | 240 DISALLOW_COPY_AND_ASSIGN(User); |
| 241 }; | 241 }; |
| 242 | 242 |
| 243 // List of known users. | 243 // List of known users. |
| 244 typedef std::vector<User*> UserList; | 244 typedef std::vector<User*> UserList; |
| 245 | 245 |
| 246 } // namespace chromeos | 246 } // namespace chromeos |
| 247 | 247 |
| 248 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_H_ | 248 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_USER_H_ |
| OLD | NEW |