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 #include "chrome/browser/chromeos/login/screen_locker.h" | 5 #include "chrome/browser/chromeos/login/screen_locker.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "ash/ash_switches.h" | 10 #include "ash/ash_switches.h" |
11 #include "ash/desktop_background/desktop_background_controller.h" | 11 #include "ash/desktop_background/desktop_background_controller.h" |
12 #include "ash/shell.h" | 12 #include "ash/shell.h" |
13 #include "ash/wm/lock_state_controller.h" | 13 #include "ash/wm/lock_state_controller.h" |
14 #include "base/bind.h" | 14 #include "base/bind.h" |
15 #include "base/command_line.h" | 15 #include "base/command_line.h" |
16 #include "base/lazy_instance.h" | 16 #include "base/lazy_instance.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "base/message_loop.h" | 18 #include "base/message_loop.h" |
19 #include "base/metrics/histogram.h" | 19 #include "base/metrics/histogram.h" |
20 #include "base/strings/string_util.h" | 20 #include "base/strings/string_util.h" |
21 #include "base/timer.h" | 21 #include "base/timer/timer.h" |
22 #include "chrome/browser/chromeos/login/authenticator.h" | 22 #include "chrome/browser/chromeos/login/authenticator.h" |
23 #include "chrome/browser/chromeos/login/login_performer.h" | 23 #include "chrome/browser/chromeos/login/login_performer.h" |
24 #include "chrome/browser/chromeos/login/login_utils.h" | 24 #include "chrome/browser/chromeos/login/login_utils.h" |
25 #include "chrome/browser/chromeos/login/user_adding_screen.h" | 25 #include "chrome/browser/chromeos/login/user_adding_screen.h" |
26 #include "chrome/browser/chromeos/login/user_manager.h" | 26 #include "chrome/browser/chromeos/login/user_manager.h" |
27 #include "chrome/browser/chromeos/login/webui_screen_locker.h" | 27 #include "chrome/browser/chromeos/login/webui_screen_locker.h" |
28 #include "chrome/browser/lifetime/application_lifetime.h" | 28 #include "chrome/browser/lifetime/application_lifetime.h" |
29 #include "chrome/browser/profiles/profile.h" | 29 #include "chrome/browser/profiles/profile.h" |
30 #include "chrome/browser/profiles/profile_manager.h" | 30 #include "chrome/browser/profiles/profile_manager.h" |
31 #include "chrome/browser/signin/signin_manager.h" | 31 #include "chrome/browser/signin/signin_manager.h" |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 bool ScreenLocker::IsUserLoggedIn(const std::string& username) { | 451 bool ScreenLocker::IsUserLoggedIn(const std::string& username) { |
452 for (UserList::const_iterator it = users_.begin(); it != users_.end(); ++it) { | 452 for (UserList::const_iterator it = users_.begin(); it != users_.end(); ++it) { |
453 if ((*it)->email() == username) | 453 if ((*it)->email() == username) |
454 return true; | 454 return true; |
455 } | 455 } |
456 return false; | 456 return false; |
457 } | 457 } |
458 | 458 |
459 } // namespace chromeos | 459 } // namespace chromeos |
460 | 460 |
OLD | NEW |