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/ui/webui_login_view.h" | 5 #include "chrome/browser/chromeos/login/ui/webui_login_view.h" |
6 | 6 |
7 #include "ash/common/focus_cycler.h" | 7 #include "ash/common/focus_cycler.h" |
| 8 #include "ash/common/system/tray/system_tray.h" |
8 #include "ash/common/wm_shell.h" | 9 #include "ash/common/wm_shell.h" |
9 #include "ash/shell.h" | 10 #include "ash/shell.h" |
10 #include "ash/system/tray/system_tray.h" | |
11 #include "base/bind.h" | 11 #include "base/bind.h" |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/i18n/rtl.h" | 13 #include "base/i18n/rtl.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
17 #include "base/trace_event/trace_event.h" | 17 #include "base/trace_event/trace_event.h" |
18 #include "base/values.h" | 18 #include "base/values.h" |
19 #include "chrome/browser/chrome_notification_types.h" | 19 #include "chrome/browser/chrome_notification_types.h" |
20 #include "chrome/browser/chromeos/accessibility/accessibility_util.h" | 20 #include "chrome/browser/chromeos/accessibility/accessibility_util.h" |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 if (should_emit_login_prompt_visible_) { | 525 if (should_emit_login_prompt_visible_) { |
526 VLOG(1) << "Login WebUI >> login-prompt-visible"; | 526 VLOG(1) << "Login WebUI >> login-prompt-visible"; |
527 chromeos::DBusThreadManager::Get()->GetSessionManagerClient()-> | 527 chromeos::DBusThreadManager::Get()->GetSessionManagerClient()-> |
528 EmitLoginPromptVisible(); | 528 EmitLoginPromptVisible(); |
529 } | 529 } |
530 | 530 |
531 webui_visible_ = true; | 531 webui_visible_ = true; |
532 } | 532 } |
533 | 533 |
534 } // namespace chromeos | 534 } // namespace chromeos |
OLD | NEW |