| 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/common/ash_switches.h" | 7 #include "ash/common/ash_switches.h" |
| 8 #include "ash/common/session/session_state_delegate.h" | 8 #include "ash/common/session/session_state_delegate.h" |
| 9 #include "ash/common/shelf/wm_shelf.h" | 9 #include "ash/common/shelf/wm_shelf.h" |
| 10 #include "ash/common/shelf/wm_shelf_util.h" | 10 #include "ash/common/shelf/wm_shelf_util.h" |
| 11 #include "ash/common/shell_window_ids.h" | 11 #include "ash/common/shell_window_ids.h" |
| 12 #include "ash/common/system/date/tray_date.h" | 12 #include "ash/common/system/date/tray_date.h" |
| 13 #include "ash/common/system/tray/system_tray_delegate.h" | 13 #include "ash/common/system/tray/system_tray_delegate.h" |
| 14 #include "ash/common/system/tray/system_tray_item.h" | 14 #include "ash/common/system/tray/system_tray_item.h" |
| 15 #include "ash/common/system/tray/tray_constants.h" | 15 #include "ash/common/system/tray/tray_constants.h" |
| 16 #include "ash/common/system/tray_accessibility.h" | 16 #include "ash/common/system/tray_accessibility.h" |
| 17 #include "ash/common/system/update/tray_update.h" | 17 #include "ash/common/system/update/tray_update.h" |
| 18 #include "ash/common/wm_shell.h" | 18 #include "ash/common/wm_shell.h" |
| 19 #include "ash/metrics/user_metrics_recorder.h" | 19 #include "ash/metrics/user_metrics_recorder.h" |
| 20 #include "ash/shell.h" | 20 #include "ash/shell.h" |
| 21 #include "ash/system/audio/tray_audio.h" | |
| 22 #include "ash/system/cast/tray_cast.h" | 21 #include "ash/system/cast/tray_cast.h" |
| 23 #include "ash/system/status_area_widget.h" | 22 #include "ash/system/status_area_widget.h" |
| 24 #include "ash/system/tray/tray_bubble_wrapper.h" | 23 #include "ash/system/tray/tray_bubble_wrapper.h" |
| 25 #include "ash/system/user/login_status.h" | 24 #include "ash/system/user/login_status.h" |
| 26 #include "ash/system/user/tray_user.h" | 25 #include "ash/system/user/tray_user.h" |
| 27 #include "ash/system/user/tray_user_separator.h" | 26 #include "ash/system/user/tray_user_separator.h" |
| 28 #include "ash/system/web_notification/web_notification_tray.h" | 27 #include "ash/system/web_notification/web_notification_tray.h" |
| 29 #include "base/logging.h" | 28 #include "base/logging.h" |
| 30 #include "base/metrics/histogram.h" | 29 #include "base/metrics/histogram.h" |
| 31 #include "base/strings/utf_string_conversions.h" | 30 #include "base/strings/utf_string_conversions.h" |
| (...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 .work_area() | 758 .work_area() |
| 760 .height(); | 759 .height(); |
| 761 if (work_area_height > 0) { | 760 if (work_area_height > 0) { |
| 762 UMA_HISTOGRAM_CUSTOM_COUNTS( | 761 UMA_HISTOGRAM_CUSTOM_COUNTS( |
| 763 "Ash.SystemMenu.PercentageOfWorkAreaHeightCoveredByMenu", | 762 "Ash.SystemMenu.PercentageOfWorkAreaHeightCoveredByMenu", |
| 764 100 * bubble_view->height() / work_area_height, 1, 300, 100); | 763 100 * bubble_view->height() / work_area_height, 1, 300, 100); |
| 765 } | 764 } |
| 766 } | 765 } |
| 767 | 766 |
| 768 } // namespace ash | 767 } // namespace ash |
| OLD | NEW |