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/tray_session_length_limit.h" | 5 #include "ash/system/session/tray_session_length_limit.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <memory> | 8 #include <memory> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "ash/common/wm_shell.h" | |
12 #include "ash/resources/grit/ash_resources.h" | 11 #include "ash/resources/grit/ash_resources.h" |
13 #include "ash/strings/grit/ash_strings.h" | 12 #include "ash/strings/grit/ash_strings.h" |
14 #include "ash/system/system_notifier.h" | 13 #include "ash/system/system_notifier.h" |
15 #include "ash/system/tray/label_tray_view.h" | 14 #include "ash/system/tray/label_tray_view.h" |
16 #include "ash/system/tray/system_tray.h" | 15 #include "ash/system/tray/system_tray.h" |
17 #include "ash/system/tray/system_tray_delegate.h" | 16 #include "ash/system/tray/system_tray_delegate.h" |
18 #include "ash/system/tray/system_tray_notifier.h" | 17 #include "ash/system/tray/system_tray_notifier.h" |
| 18 #include "ash/wm_shell.h" |
19 #include "base/logging.h" | 19 #include "base/logging.h" |
20 #include "base/strings/utf_string_conversions.h" | 20 #include "base/strings/utf_string_conversions.h" |
21 #include "ui/base/l10n/l10n_util.h" | 21 #include "ui/base/l10n/l10n_util.h" |
22 #include "ui/base/l10n/time_format.h" | 22 #include "ui/base/l10n/time_format.h" |
23 #include "ui/base/resource/resource_bundle.h" | 23 #include "ui/base/resource/resource_bundle.h" |
24 #include "ui/message_center/message_center.h" | 24 #include "ui/message_center/message_center.h" |
25 #include "ui/message_center/notification.h" | 25 #include "ui/message_center/notification.h" |
26 #include "ui/views/view.h" | 26 #include "ui/views/view.h" |
27 | 27 |
28 namespace ash { | 28 namespace ash { |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 | 187 |
188 base::string16 TraySessionLengthLimit::ComposeTrayBubbleMessage() const { | 188 base::string16 TraySessionLengthLimit::ComposeTrayBubbleMessage() const { |
189 return l10n_util::GetStringFUTF16( | 189 return l10n_util::GetStringFUTF16( |
190 IDS_ASH_STATUS_TRAY_BUBBLE_SESSION_LENGTH_LIMIT, | 190 IDS_ASH_STATUS_TRAY_BUBBLE_SESSION_LENGTH_LIMIT, |
191 ui::TimeFormat::Detailed(ui::TimeFormat::FORMAT_DURATION, | 191 ui::TimeFormat::Detailed(ui::TimeFormat::FORMAT_DURATION, |
192 ui::TimeFormat::LENGTH_LONG, 10, | 192 ui::TimeFormat::LENGTH_LONG, 10, |
193 remaining_session_time_)); | 193 remaining_session_time_)); |
194 } | 194 } |
195 | 195 |
196 } // namespace ash | 196 } // namespace ash |
OLD | NEW |