Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Side by Side Diff: ash/system/power/tray_power.cc

Issue 14949004: ash: Rename tray_views.{h,cc} to tray_utils.{h,cc} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix browsertest Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/power/tray_power.h" 5 #include "ash/system/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/system/date/date_view.h" 9 #include "ash/system/date/date_view.h"
10 #include "ash/system/power/power_status_view.h" 10 #include "ash/system/power/power_status_view.h"
11 #include "ash/system/power/power_supply_status.h" 11 #include "ash/system/power/power_supply_status.h"
12 #include "ash/system/tray/system_tray_delegate.h" 12 #include "ash/system/tray/system_tray_delegate.h"
13 #include "ash/system/tray/system_tray_notifier.h" 13 #include "ash/system/tray/system_tray_notifier.h"
14 #include "ash/system/tray/tray_constants.h" 14 #include "ash/system/tray/tray_constants.h"
15 #include "ash/system/tray/tray_notification_view.h" 15 #include "ash/system/tray/tray_notification_view.h"
16 #include "ash/system/tray/tray_views.h" 16 #include "ash/system/tray/tray_utils.h"
17 #include "base/command_line.h" 17 #include "base/command_line.h"
18 #include "base/stringprintf.h" 18 #include "base/stringprintf.h"
19 #include "base/strings/string_number_conversions.h" 19 #include "base/strings/string_number_conversions.h"
20 #include "base/utf_string_conversions.h" 20 #include "base/utf_string_conversions.h"
21 #include "grit/ash_resources.h" 21 #include "grit/ash_resources.h"
22 #include "grit/ash_strings.h" 22 #include "grit/ash_strings.h"
23 #include "third_party/icu/public/i18n/unicode/fieldpos.h" 23 #include "third_party/icu/public/i18n/unicode/fieldpos.h"
24 #include "third_party/icu/public/i18n/unicode/fmtable.h" 24 #include "third_party/icu/public/i18n/unicode/fmtable.h"
25 #include "third_party/skia/include/core/SkRect.h" 25 #include "third_party/skia/include/core/SkRect.h"
26 #include "ui/base/accessibility/accessible_view_state.h" 26 #include "ui/base/accessibility/accessible_view_state.h"
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 return false; 356 return false;
357 case NOTIFICATION_CRITICAL: 357 case NOTIFICATION_CRITICAL:
358 return false; 358 return false;
359 } 359 }
360 NOTREACHED(); 360 NOTREACHED();
361 return false; 361 return false;
362 } 362 }
363 363
364 } // namespace internal 364 } // namespace internal
365 } // namespace ash 365 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698