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 "ash/system/session/logout_confirmation_dialog.h" | 5 #include "ash/system/session/logout_confirmation_dialog.h" |
6 | 6 |
7 #include "ash/common/wm_shell.h" | |
8 #include "ash/common/wm_window.h" | |
9 #include "ash/public/cpp/shell_window_ids.h" | 7 #include "ash/public/cpp/shell_window_ids.h" |
10 #include "ash/root_window_controller.h" | 8 #include "ash/root_window_controller.h" |
11 #include "ash/strings/grit/ash_strings.h" | 9 #include "ash/strings/grit/ash_strings.h" |
12 #include "ash/system/session/logout_confirmation_controller.h" | 10 #include "ash/system/session/logout_confirmation_controller.h" |
13 #include "ash/system/tray/tray_constants.h" | 11 #include "ash/system/tray/tray_constants.h" |
| 12 #include "ash/wm_shell.h" |
| 13 #include "ash/wm_window.h" |
14 #include "base/location.h" | 14 #include "base/location.h" |
15 #include "base/time/tick_clock.h" | 15 #include "base/time/tick_clock.h" |
16 #include "ui/base/l10n/l10n_util.h" | 16 #include "ui/base/l10n/l10n_util.h" |
17 #include "ui/base/l10n/time_format.h" | 17 #include "ui/base/l10n/time_format.h" |
18 #include "ui/base/ui_base_types.h" | 18 #include "ui/base/ui_base_types.h" |
19 #include "ui/gfx/geometry/rect.h" | 19 #include "ui/gfx/geometry/rect.h" |
20 #include "ui/gfx/text_constants.h" | 20 #include "ui/gfx/text_constants.h" |
21 #include "ui/views/border.h" | 21 #include "ui/views/border.h" |
22 #include "ui/views/controls/label.h" | 22 #include "ui/views/controls/label.h" |
23 #include "ui/views/layout/fill_layout.h" | 23 #include "ui/views/layout/fill_layout.h" |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 ui::TimeFormat::LENGTH_LONG, 10, | 113 ui::TimeFormat::LENGTH_LONG, 10, |
114 time_remaining))); | 114 time_remaining))); |
115 } else { | 115 } else { |
116 label_->SetText( | 116 label_->SetText( |
117 l10n_util::GetStringUTF16(IDS_ASH_LOGOUT_CONFIRMATION_WARNING_NOW)); | 117 l10n_util::GetStringUTF16(IDS_ASH_LOGOUT_CONFIRMATION_WARNING_NOW)); |
118 update_timer_.Stop(); | 118 update_timer_.Stop(); |
119 } | 119 } |
120 } | 120 } |
121 | 121 |
122 } // namespace ash | 122 } // namespace ash |
OLD | NEW |