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

Side by Side Diff: ash/system/tray/system_tray.cc

Issue 2092473002: Convert TrayBubbleView to wm common types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@traybubblewrapper
Patch Set: cleanup Created 4 years, 6 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
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/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_lookup.h"
19 #include "ash/common/wm_root_window_controller.h"
18 #include "ash/common/wm_shell.h" 20 #include "ash/common/wm_shell.h"
21 #include "ash/common/wm_window.h"
19 #include "ash/metrics/user_metrics_recorder.h" 22 #include "ash/metrics/user_metrics_recorder.h"
20 #include "ash/shell.h" 23 #include "ash/shell.h"
21 #include "ash/system/audio/tray_audio.h" 24 #include "ash/system/audio/tray_audio.h"
22 #include "ash/system/cast/tray_cast.h" 25 #include "ash/system/cast/tray_cast.h"
23 #include "ash/system/status_area_widget.h" 26 #include "ash/system/status_area_widget.h"
24 #include "ash/system/tray/tray_bubble_wrapper.h" 27 #include "ash/system/tray/tray_bubble_wrapper.h"
25 #include "ash/system/user/login_status.h" 28 #include "ash/system/user/login_status.h"
26 #include "ash/system/user/tray_user.h" 29 #include "ash/system/user/tray_user.h"
27 #include "ash/system/user/tray_user_separator.h" 30 #include "ash/system/user/tray_user_separator.h"
28 #include "ash/system/web_notification/web_notification_tray.h" 31 #include "ash/system/web_notification/web_notification_tray.h"
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 DestroyNotificationBubble(); 659 DestroyNotificationBubble();
657 } 660 }
658 } 661 }
659 662
660 void SystemTray::ClickedOutsideBubble() { 663 void SystemTray::ClickedOutsideBubble() {
661 if (!system_bubble_ || system_bubble_->is_persistent()) 664 if (!system_bubble_ || system_bubble_->is_persistent())
662 return; 665 return;
663 HideBubbleWithView(system_bubble_->bubble_view()); 666 HideBubbleWithView(system_bubble_->bubble_view());
664 } 667 }
665 668
669 // views::TrayBubbleView::Delegate overrides:
msw 2016/06/22 23:00:23 nit: I'm not a big fan unless the file is consiste
James Cook 2016/06/22 23:06:28 Removed.
670
666 void SystemTray::BubbleViewDestroyed() { 671 void SystemTray::BubbleViewDestroyed() {
667 if (system_bubble_) { 672 if (system_bubble_) {
668 system_bubble_->bubble()->DestroyItemViews(); 673 system_bubble_->bubble()->DestroyItemViews();
669 system_bubble_->bubble()->BubbleViewDestroyed(); 674 system_bubble_->bubble()->BubbleViewDestroyed();
670 } 675 }
671 } 676 }
672 677
673 void SystemTray::OnMouseEnteredView() { 678 void SystemTray::OnMouseEnteredView() {
674 if (system_bubble_) 679 if (system_bubble_)
675 system_bubble_->bubble()->StopAutoCloseTimer(); 680 system_bubble_->bubble()->StopAutoCloseTimer();
676 } 681 }
677 682
678 void SystemTray::OnMouseExitedView() { 683 void SystemTray::OnMouseExitedView() {
679 if (system_bubble_) 684 if (system_bubble_)
680 system_bubble_->bubble()->RestartAutoCloseTimer(); 685 system_bubble_->bubble()->RestartAutoCloseTimer();
681 } 686 }
682 687
683 base::string16 SystemTray::GetAccessibleNameForBubble() { 688 base::string16 SystemTray::GetAccessibleNameForBubble() {
684 return GetAccessibleNameForTray(); 689 return GetAccessibleNameForTray();
685 } 690 }
686 691
687 gfx::Rect SystemTray::GetAnchorRect( 692 gfx::Rect SystemTray::GetAnchorRect(
688 views::Widget* anchor_widget, 693 views::Widget* anchor_widget,
689 TrayBubbleView::AnchorType anchor_type, 694 TrayBubbleView::AnchorType anchor_type,
690 TrayBubbleView::AnchorAlignment anchor_alignment) const { 695 TrayBubbleView::AnchorAlignment anchor_alignment) const {
691 return GetBubbleAnchorRect(anchor_widget, anchor_type, anchor_alignment); 696 return GetBubbleAnchorRect(anchor_widget, anchor_type, anchor_alignment);
692 } 697 }
693 698
699 void SystemTray::OnBeforeBubbleWidgetInit(
700 views::Widget* anchor_widget,
701 views::Widget* bubble_widget,
702 views::Widget::InitParams* params) const {
703 // Place the bubble in the same root window as |anchor_widget|.
704 WmLookup::Get()
705 ->GetWindowForWidget(anchor_widget)
706 ->GetRootWindowController()
707 ->ConfigureWidgetInitParamsForContainer(
708 bubble_widget, kShellWindowId_SettingBubbleContainer, params);
709 }
710
694 void SystemTray::HideBubble(const TrayBubbleView* bubble_view) { 711 void SystemTray::HideBubble(const TrayBubbleView* bubble_view) {
695 HideBubbleWithView(bubble_view); 712 HideBubbleWithView(bubble_view);
696 } 713 }
697 714
698 views::View* SystemTray::GetTrayItemViewForTest(SystemTrayItem* item) { 715 views::View* SystemTray::GetTrayItemViewForTest(SystemTrayItem* item) {
699 std::map<SystemTrayItem*, views::View*>::iterator it = 716 std::map<SystemTrayItem*, views::View*>::iterator it =
700 tray_item_map_.find(item); 717 tray_item_map_.find(item);
701 return it == tray_item_map_.end() ? NULL : it->second; 718 return it == tray_item_map_.end() ? NULL : it->second;
702 } 719 }
703 720
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 .work_area() 776 .work_area()
760 .height(); 777 .height();
761 if (work_area_height > 0) { 778 if (work_area_height > 0) {
762 UMA_HISTOGRAM_CUSTOM_COUNTS( 779 UMA_HISTOGRAM_CUSTOM_COUNTS(
763 "Ash.SystemMenu.PercentageOfWorkAreaHeightCoveredByMenu", 780 "Ash.SystemMenu.PercentageOfWorkAreaHeightCoveredByMenu",
764 100 * bubble_view->height() / work_area_height, 1, 300, 100); 781 100 * bubble_view->height() / work_area_height, 1, 300, 100);
765 } 782 }
766 } 783 }
767 784
768 } // namespace ash 785 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698