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/tray/system_tray.h" | 5 #include "ash/system/tray/system_tray.h" |
6 | 6 |
7 #include "ash/ash_switches.h" | 7 #include "ash/ash_switches.h" |
| 8 #include "ash/common/wm/shelf/wm_shelf_util.h" |
8 #include "ash/metrics/user_metrics_recorder.h" | 9 #include "ash/metrics/user_metrics_recorder.h" |
9 #include "ash/shelf/shelf_layout_manager.h" | 10 #include "ash/shelf/shelf_layout_manager.h" |
10 #include "ash/shelf/shelf_util.h" | 11 #include "ash/shelf/shelf_util.h" |
11 #include "ash/shell.h" | 12 #include "ash/shell.h" |
12 #include "ash/shell_window_ids.h" | 13 #include "ash/shell_window_ids.h" |
13 #include "ash/system/audio/tray_audio.h" | 14 #include "ash/system/audio/tray_audio.h" |
14 #include "ash/system/cast/tray_cast.h" | 15 #include "ash/system/cast/tray_cast.h" |
15 #include "ash/system/date/tray_date.h" | 16 #include "ash/system/date/tray_date.h" |
16 #include "ash/system/status_area_widget.h" | 17 #include "ash/system/status_area_widget.h" |
17 #include "ash/system/tray/system_tray_delegate.h" | 18 #include "ash/system/tray/system_tray_delegate.h" |
18 #include "ash/system/tray/system_tray_item.h" | 19 #include "ash/system/tray/system_tray_item.h" |
19 #include "ash/system/tray/tray_bubble_wrapper.h" | 20 #include "ash/system/tray/tray_bubble_wrapper.h" |
20 #include "ash/system/tray/tray_constants.h" | 21 #include "ash/system/tray/tray_constants.h" |
21 #include "ash/system/tray_accessibility.h" | 22 #include "ash/system/tray_accessibility.h" |
22 #include "ash/system/tray_update.h" | 23 #include "ash/system/tray_update.h" |
23 #include "ash/system/user/login_status.h" | 24 #include "ash/system/user/login_status.h" |
24 #include "ash/system/user/tray_user.h" | 25 #include "ash/system/user/tray_user.h" |
25 #include "ash/system/user/tray_user_separator.h" | 26 #include "ash/system/user/tray_user_separator.h" |
26 #include "ash/system/web_notification/web_notification_tray.h" | 27 #include "ash/system/web_notification/web_notification_tray.h" |
27 #include "ash/wm/common/shelf/wm_shelf_util.h" | |
28 #include "base/logging.h" | 28 #include "base/logging.h" |
29 #include "base/metrics/histogram.h" | 29 #include "base/metrics/histogram.h" |
30 #include "base/strings/utf_string_conversions.h" | 30 #include "base/strings/utf_string_conversions.h" |
31 #include "base/timer/timer.h" | 31 #include "base/timer/timer.h" |
32 #include "grit/ash_strings.h" | 32 #include "grit/ash_strings.h" |
33 #include "ui/aura/window_event_dispatcher.h" | 33 #include "ui/aura/window_event_dispatcher.h" |
34 #include "ui/base/l10n/l10n_util.h" | 34 #include "ui/base/l10n/l10n_util.h" |
35 #include "ui/compositor/layer.h" | 35 #include "ui/compositor/layer.h" |
36 #include "ui/display/display.h" | 36 #include "ui/display/display.h" |
37 #include "ui/display/screen.h" | 37 #include "ui/display/screen.h" |
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
756 .work_area() | 756 .work_area() |
757 .height(); | 757 .height(); |
758 if (work_area_height > 0) { | 758 if (work_area_height > 0) { |
759 UMA_HISTOGRAM_CUSTOM_COUNTS( | 759 UMA_HISTOGRAM_CUSTOM_COUNTS( |
760 "Ash.SystemMenu.PercentageOfWorkAreaHeightCoveredByMenu", | 760 "Ash.SystemMenu.PercentageOfWorkAreaHeightCoveredByMenu", |
761 100 * bubble_view->height() / work_area_height, 1, 300, 100); | 761 100 * bubble_view->height() / work_area_height, 1, 300, 100); |
762 } | 762 } |
763 } | 763 } |
764 | 764 |
765 } // namespace ash | 765 } // namespace ash |
OLD | NEW |