| OLD | NEW |
| 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 #include "chrome/browser/chromeos/login/lock/screen_locker.h" | 5 #include "chrome/browser/chromeos/login/lock/screen_locker.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 #include "chrome/browser/signin/easy_unlock_service.h" | 39 #include "chrome/browser/signin/easy_unlock_service.h" |
| 40 #include "chrome/browser/signin/signin_manager_factory.h" | 40 #include "chrome/browser/signin/signin_manager_factory.h" |
| 41 #include "chrome/browser/ui/ash/ash_util.h" | 41 #include "chrome/browser/ui/ash/ash_util.h" |
| 42 #include "chrome/browser/ui/ash/session_controller_client.h" | 42 #include "chrome/browser/ui/ash/session_controller_client.h" |
| 43 #include "chrome/browser/ui/webui/chromeos/login/screenlock_icon_provider.h" | 43 #include "chrome/browser/ui/webui/chromeos/login/screenlock_icon_provider.h" |
| 44 #include "chrome/browser/ui/webui/chromeos/login/screenlock_icon_source.h" | 44 #include "chrome/browser/ui/webui/chromeos/login/screenlock_icon_source.h" |
| 45 #include "chrome/common/chrome_switches.h" | 45 #include "chrome/common/chrome_switches.h" |
| 46 #include "chrome/grit/browser_resources.h" | 46 #include "chrome/grit/browser_resources.h" |
| 47 #include "chrome/grit/generated_resources.h" | 47 #include "chrome/grit/generated_resources.h" |
| 48 #include "chromeos/audio/chromeos_sounds.h" | 48 #include "chromeos/audio/chromeos_sounds.h" |
| 49 #include "chromeos/dbus/biod/constants.pb.h" |
| 49 #include "chromeos/dbus/dbus_thread_manager.h" | 50 #include "chromeos/dbus/dbus_thread_manager.h" |
| 50 #include "chromeos/dbus/session_manager_client.h" | 51 #include "chromeos/dbus/session_manager_client.h" |
| 51 #include "chromeos/login/auth/authenticator.h" | 52 #include "chromeos/login/auth/authenticator.h" |
| 52 #include "chromeos/login/auth/extended_authenticator.h" | 53 #include "chromeos/login/auth/extended_authenticator.h" |
| 53 #include "chromeos/network/portal_detector/network_portal_detector.h" | 54 #include "chromeos/network/portal_detector/network_portal_detector.h" |
| 54 #include "components/session_manager/core/session_manager.h" | 55 #include "components/session_manager/core/session_manager.h" |
| 55 #include "components/signin/core/browser/signin_manager.h" | 56 #include "components/signin/core/browser/signin_manager.h" |
| 56 #include "components/user_manager/user_manager.h" | 57 #include "components/user_manager/user_manager.h" |
| 57 #include "components/user_manager/user_type.h" | 58 #include "components/user_manager/user_type.h" |
| 58 #include "content/public/browser/browser_thread.h" | 59 #include "content/public/browser/browser_thread.h" |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 } | 645 } |
| 645 } | 646 } |
| 646 | 647 |
| 647 if (auth_status_consumer_) { | 648 if (auth_status_consumer_) { |
| 648 AuthFailure failure(AuthFailure::UNLOCK_FAILED); | 649 AuthFailure failure(AuthFailure::UNLOCK_FAILED); |
| 649 auth_status_consumer_->OnAuthFailure(failure); | 650 auth_status_consumer_->OnAuthFailure(failure); |
| 650 } | 651 } |
| 651 } | 652 } |
| 652 | 653 |
| 653 } // namespace chromeos | 654 } // namespace chromeos |
| OLD | NEW |