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/tray_background_view.h" | 5 #include "ash/system/tray/tray_background_view.h" |
6 | 6 |
| 7 #include "ash/common/shell_window_ids.h" |
7 #include "ash/common/wm/shelf/wm_shelf_util.h" | 8 #include "ash/common/wm/shelf/wm_shelf_util.h" |
8 #include "ash/root_window_controller.h" | 9 #include "ash/root_window_controller.h" |
9 #include "ash/screen_util.h" | 10 #include "ash/screen_util.h" |
10 #include "ash/shelf/shelf_layout_manager.h" | 11 #include "ash/shelf/shelf_layout_manager.h" |
11 #include "ash/shelf/shelf_util.h" | 12 #include "ash/shelf/shelf_util.h" |
12 #include "ash/shelf/shelf_widget.h" | 13 #include "ash/shelf/shelf_widget.h" |
13 #include "ash/shell.h" | 14 #include "ash/shell.h" |
14 #include "ash/shell_window_ids.h" | |
15 #include "ash/system/status_area_widget.h" | 15 #include "ash/system/status_area_widget.h" |
16 #include "ash/system/status_area_widget_delegate.h" | 16 #include "ash/system/status_area_widget_delegate.h" |
17 #include "ash/system/tray/system_tray.h" | 17 #include "ash/system/tray/system_tray.h" |
18 #include "ash/system/tray/tray_constants.h" | 18 #include "ash/system/tray/tray_constants.h" |
19 #include "ash/system/tray/tray_event_filter.h" | 19 #include "ash/system/tray/tray_event_filter.h" |
20 #include "ash/wm/window_animations.h" | 20 #include "ash/wm/window_animations.h" |
21 #include "base/command_line.h" | 21 #include "base/command_line.h" |
22 #include "grit/ash_resources.h" | 22 #include "grit/ash_resources.h" |
23 #include "ui/accessibility/ax_view_state.h" | 23 #include "ui/accessibility/ax_view_state.h" |
24 #include "ui/aura/window.h" | 24 #include "ui/aura/window.h" |
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 background_->set_alpha(kTrayBackgroundAlpha); | 582 background_->set_alpha(kTrayBackgroundAlpha); |
583 SchedulePaint(); | 583 SchedulePaint(); |
584 } | 584 } |
585 | 585 |
586 void TrayBackgroundView::UpdateBubbleViewArrow( | 586 void TrayBackgroundView::UpdateBubbleViewArrow( |
587 views::TrayBubbleView* bubble_view) { | 587 views::TrayBubbleView* bubble_view) { |
588 // Nothing to do here. | 588 // Nothing to do here. |
589 } | 589 } |
590 | 590 |
591 } // namespace ash | 591 } // namespace ash |
OLD | NEW |