| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/ui/webui/chromeos/login/signin_screen_handler.h" | 5 #include "chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "ash/common/session/session_state_delegate.h" |
| 12 #include "ash/common/system/chromeos/devicetype_utils.h" | 13 #include "ash/common/system/chromeos/devicetype_utils.h" |
| 13 #include "ash/common/wm_shell.h" | 14 #include "ash/common/wm_shell.h" |
| 14 #include "ash/shell.h" | 15 #include "ash/shell.h" |
| 15 #include "ash/wm/lock_state_controller.h" | 16 #include "ash/wm/lock_state_controller.h" |
| 16 #include "base/bind.h" | 17 #include "base/bind.h" |
| 17 #include "base/i18n/number_formatting.h" | 18 #include "base/i18n/number_formatting.h" |
| 18 #include "base/location.h" | 19 #include "base/location.h" |
| 19 #include "base/logging.h" | 20 #include "base/logging.h" |
| 20 #include "base/macros.h" | 21 #include "base/macros.h" |
| 21 #include "base/metrics/histogram_macros.h" | 22 #include "base/metrics/histogram_macros.h" |
| (...skipping 1471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1493 } | 1494 } |
| 1494 | 1495 |
| 1495 void SigninScreenHandler::OnFeedbackFinished() { | 1496 void SigninScreenHandler::OnFeedbackFinished() { |
| 1496 CallJS("login.UnrecoverableCryptohomeErrorScreen.resumeAfterFeedbackUI"); | 1497 CallJS("login.UnrecoverableCryptohomeErrorScreen.resumeAfterFeedbackUI"); |
| 1497 | 1498 |
| 1498 // Recreate user's cryptohome after the feedback is attempted. | 1499 // Recreate user's cryptohome after the feedback is attempted. |
| 1499 HandleResyncUserData(); | 1500 HandleResyncUserData(); |
| 1500 } | 1501 } |
| 1501 | 1502 |
| 1502 } // namespace chromeos | 1503 } // namespace chromeos |
| OLD | NEW |