OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/chromeos/power/tray_power.h" | 5 #include "ash/system/chromeos/power/tray_power.h" |
6 | 6 |
7 #include "ash/ash_switches.h" | 7 #include "ash/ash_switches.h" |
8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
9 #include "ash/shell_delegate.h" | 9 #include "ash/shell_delegate.h" |
10 #include "ash/system/chromeos/power/power_status_view.h" | 10 #include "ash/system/chromeos/power/power_status_view.h" |
11 #include "ash/system/date/date_view.h" | 11 #include "ash/system/date/date_view.h" |
12 #include "ash/system/tray/tray_constants.h" | 12 #include "ash/system/tray/tray_constants.h" |
13 #include "ash/system/tray/tray_notification_view.h" | 13 #include "ash/system/tray/tray_notification_view.h" |
14 #include "ash/system/tray/tray_utils.h" | 14 #include "ash/system/tray/tray_utils.h" |
15 #include "base/command_line.h" | 15 #include "base/command_line.h" |
16 #include "base/stringprintf.h" | 16 #include "base/stringprintf.h" |
17 #include "base/strings/string_number_conversions.h" | 17 #include "base/strings/string_number_conversions.h" |
18 #include "base/utf_string_conversions.h" | 18 #include "base/strings/utf_string_conversions.h" |
19 #include "chromeos/dbus/power_supply_status.h" | 19 #include "chromeos/dbus/power_supply_status.h" |
20 #include "grit/ash_resources.h" | 20 #include "grit/ash_resources.h" |
21 #include "grit/ash_strings.h" | 21 #include "grit/ash_strings.h" |
22 #include "third_party/icu/public/i18n/unicode/fieldpos.h" | 22 #include "third_party/icu/public/i18n/unicode/fieldpos.h" |
23 #include "third_party/icu/public/i18n/unicode/fmtable.h" | 23 #include "third_party/icu/public/i18n/unicode/fmtable.h" |
24 #include "third_party/skia/include/core/SkRect.h" | 24 #include "third_party/skia/include/core/SkRect.h" |
25 #include "ui/base/accessibility/accessible_view_state.h" | 25 #include "ui/base/accessibility/accessible_view_state.h" |
26 #include "ui/base/l10n/l10n_util.h" | 26 #include "ui/base/l10n/l10n_util.h" |
27 #include "ui/base/resource/resource_bundle.h" | 27 #include "ui/base/resource/resource_bundle.h" |
28 #include "ui/gfx/image/image.h" | 28 #include "ui/gfx/image/image.h" |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 return false; | 478 return false; |
479 case NOTIFICATION_CRITICAL: | 479 case NOTIFICATION_CRITICAL: |
480 return false; | 480 return false; |
481 } | 481 } |
482 NOTREACHED(); | 482 NOTREACHED(); |
483 return false; | 483 return false; |
484 } | 484 } |
485 | 485 |
486 } // namespace internal | 486 } // namespace internal |
487 } // namespace ash | 487 } // namespace ash |
OLD | NEW |