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/web_notification/web_notification_tray.h" | 5 #include "ash/system/web_notification/web_notification_tray.h" |
6 | 6 |
7 #include "ash/ash_switches.h" | 7 #include "ash/ash_switches.h" |
8 #include "ash/root_window_controller.h" | 8 #include "ash/root_window_controller.h" |
9 #include "ash/shelf/shelf_layout_manager.h" | 9 #include "ash/shelf/shelf_layout_manager.h" |
10 #include "ash/shelf/shelf_layout_manager_observer.h" | 10 #include "ash/shelf/shelf_layout_manager_observer.h" |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 if (shelf_->GetAlignment() == SHELF_ALIGNMENT_TOP) | 188 if (shelf_->GetAlignment() == SHELF_ALIGNMENT_TOP) |
189 work_area.set_y(work_area.y() + system_tray_height_); | 189 work_area.set_y(work_area.y() + system_tray_height_); |
190 } | 190 } |
191 collection_->SetDisplayInfo(work_area, display.bounds()); | 191 collection_->SetDisplayInfo(work_area, display.bounds()); |
192 } | 192 } |
193 | 193 |
194 void WorkAreaObserver::UpdateShelf() { | 194 void WorkAreaObserver::UpdateShelf() { |
195 if (shelf_) | 195 if (shelf_) |
196 return; | 196 return; |
197 | 197 |
198 shelf_ = ShelfLayoutManager::ForLauncher(root_window_); | 198 shelf_ = ShelfLayoutManager::ForShelf(root_window_); |
199 if (shelf_) | 199 if (shelf_) |
200 shelf_->AddObserver(this); | 200 shelf_->AddObserver(this); |
201 } | 201 } |
202 | 202 |
203 // Class to initialize and manage the WebNotificationBubble and | 203 // Class to initialize and manage the WebNotificationBubble and |
204 // TrayBubbleWrapper instances for a bubble. | 204 // TrayBubbleWrapper instances for a bubble. |
205 class WebNotificationBubbleWrapper { | 205 class WebNotificationBubbleWrapper { |
206 public: | 206 public: |
207 // Takes ownership of |bubble| and creates |bubble_wrapper_|. | 207 // Takes ownership of |bubble| and creates |bubble_wrapper_|. |
208 WebNotificationBubbleWrapper(WebNotificationTray* tray, | 208 WebNotificationBubbleWrapper(WebNotificationTray* tray, |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 } | 424 } |
425 | 425 |
426 // Private methods. | 426 // Private methods. |
427 | 427 |
428 bool WebNotificationTray::ShouldShowMessageCenter() { | 428 bool WebNotificationTray::ShouldShowMessageCenter() { |
429 return status_area_widget()->login_status() != user::LOGGED_IN_LOCKED && | 429 return status_area_widget()->login_status() != user::LOGGED_IN_LOCKED && |
430 !(status_area_widget()->system_tray() && | 430 !(status_area_widget()->system_tray() && |
431 status_area_widget()->system_tray()->HasNotificationBubble()); | 431 status_area_widget()->system_tray()->HasNotificationBubble()); |
432 } | 432 } |
433 | 433 |
434 bool WebNotificationTray::ShouldBlockLauncherAutoHide() const { | 434 bool WebNotificationTray::ShouldBlockShelfAutoHide() const { |
435 return should_block_shelf_auto_hide_; | 435 return should_block_shelf_auto_hide_; |
436 } | 436 } |
437 | 437 |
438 bool WebNotificationTray::IsMessageCenterBubbleVisible() const { | 438 bool WebNotificationTray::IsMessageCenterBubbleVisible() const { |
439 return (message_center_bubble() && | 439 return (message_center_bubble() && |
440 message_center_bubble()->bubble()->IsVisible()); | 440 message_center_bubble()->bubble()->IsVisible()); |
441 } | 441 } |
442 | 442 |
443 bool WebNotificationTray::IsMouseInNotificationBubble() const { | 443 bool WebNotificationTray::IsMouseInNotificationBubble() const { |
444 return false; | 444 return false; |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
621 | 621 |
622 message_center::MessageCenterBubble* | 622 message_center::MessageCenterBubble* |
623 WebNotificationTray::GetMessageCenterBubbleForTest() { | 623 WebNotificationTray::GetMessageCenterBubbleForTest() { |
624 if (!message_center_bubble()) | 624 if (!message_center_bubble()) |
625 return NULL; | 625 return NULL; |
626 return static_cast<message_center::MessageCenterBubble*>( | 626 return static_cast<message_center::MessageCenterBubble*>( |
627 message_center_bubble()->bubble()); | 627 message_center_bubble()->bubble()); |
628 } | 628 } |
629 | 629 |
630 } // namespace ash | 630 } // namespace ash |
OLD | NEW |