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/root_window_controller.h" | 7 #include "ash/root_window_controller.h" |
| 8 #include "ash/shelf/shelf_layout_manager.h" |
8 #include "ash/shell.h" | 9 #include "ash/shell.h" |
9 #include "ash/shell_window_ids.h" | 10 #include "ash/shell_window_ids.h" |
10 #include "ash/system/status_area_widget.h" | 11 #include "ash/system/status_area_widget.h" |
11 #include "ash/system/tray/tray_background_view.h" | 12 #include "ash/system/tray/tray_background_view.h" |
12 #include "ash/system/tray/tray_bubble_wrapper.h" | 13 #include "ash/system/tray/tray_bubble_wrapper.h" |
13 #include "ash/system/tray/tray_constants.h" | 14 #include "ash/system/tray/tray_constants.h" |
14 #include "ash/wm/shelf_layout_manager.h" | |
15 #include "grit/ash_resources.h" | 15 #include "grit/ash_resources.h" |
16 #include "grit/ash_strings.h" | 16 #include "grit/ash_strings.h" |
17 #include "ui/aura/root_window.h" | 17 #include "ui/aura/root_window.h" |
18 #include "ui/aura/window.h" | 18 #include "ui/aura/window.h" |
19 #include "ui/base/l10n/l10n_util.h" | 19 #include "ui/base/l10n/l10n_util.h" |
20 #include "ui/base/resource/resource_bundle.h" | 20 #include "ui/base/resource/resource_bundle.h" |
21 #include "ui/gfx/screen.h" | 21 #include "ui/gfx/screen.h" |
22 #include "ui/message_center/message_bubble_base.h" | 22 #include "ui/message_center/message_bubble_base.h" |
23 #include "ui/message_center/message_center_bubble.h" | 23 #include "ui/message_center/message_center_bubble.h" |
24 #include "ui/message_center/message_center_tray_delegate.h" | 24 #include "ui/message_center/message_center_tray_delegate.h" |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 | 451 |
452 message_center::MessagePopupBubble* | 452 message_center::MessagePopupBubble* |
453 WebNotificationTray::GetPopupBubbleForTest() { | 453 WebNotificationTray::GetPopupBubbleForTest() { |
454 if (!popup_bubble()) | 454 if (!popup_bubble()) |
455 return NULL; | 455 return NULL; |
456 return static_cast<message_center::MessagePopupBubble*>( | 456 return static_cast<message_center::MessagePopupBubble*>( |
457 popup_bubble()->bubble()); | 457 popup_bubble()->bubble()); |
458 } | 458 } |
459 | 459 |
460 } // namespace ash | 460 } // namespace ash |
OLD | NEW |