| 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/material_design/material_design_controller.h" | 7 #include "ash/common/material_design/material_design_controller.h" |
| 8 #include "ash/common/shelf/wm_shelf_util.h" | 8 #include "ash/common/shelf/wm_shelf_util.h" |
| 9 #include "ash/common/shell_window_ids.h" | 9 #include "ash/common/shell_window_ids.h" |
| 10 #include "ash/common/system/tray/tray_constants.h" |
| 10 #include "ash/root_window_controller.h" | 11 #include "ash/root_window_controller.h" |
| 11 #include "ash/screen_util.h" | 12 #include "ash/screen_util.h" |
| 12 #include "ash/shelf/shelf_layout_manager.h" | 13 #include "ash/shelf/shelf_layout_manager.h" |
| 13 #include "ash/shelf/shelf_util.h" | 14 #include "ash/shelf/shelf_util.h" |
| 14 #include "ash/shelf/shelf_widget.h" | 15 #include "ash/shelf/shelf_widget.h" |
| 15 #include "ash/shell.h" | 16 #include "ash/shell.h" |
| 16 #include "ash/system/status_area_widget.h" | 17 #include "ash/system/status_area_widget.h" |
| 17 #include "ash/system/status_area_widget_delegate.h" | 18 #include "ash/system/status_area_widget_delegate.h" |
| 18 #include "ash/system/tray/system_tray.h" | 19 #include "ash/system/tray/system_tray.h" |
| 19 #include "ash/system/tray/tray_constants.h" | |
| 20 #include "ash/system/tray/tray_event_filter.h" | 20 #include "ash/system/tray/tray_event_filter.h" |
| 21 #include "ash/wm/window_animations.h" | 21 #include "ash/wm/window_animations.h" |
| 22 #include "base/command_line.h" | 22 #include "base/command_line.h" |
| 23 #include "grit/ash_resources.h" | 23 #include "grit/ash_resources.h" |
| 24 #include "ui/accessibility/ax_view_state.h" | 24 #include "ui/accessibility/ax_view_state.h" |
| 25 #include "ui/aura/window.h" | 25 #include "ui/aura/window.h" |
| 26 #include "ui/aura/window_event_dispatcher.h" | 26 #include "ui/aura/window_event_dispatcher.h" |
| 27 #include "ui/base/nine_image_painter_factory.h" | 27 #include "ui/base/nine_image_painter_factory.h" |
| 28 #include "ui/base/ui_base_switches_util.h" | 28 #include "ui/base/ui_base_switches_util.h" |
| 29 #include "ui/compositor/layer.h" | 29 #include "ui/compositor/layer.h" |
| (...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 return; | 567 return; |
| 568 SchedulePaint(); | 568 SchedulePaint(); |
| 569 } | 569 } |
| 570 | 570 |
| 571 void TrayBackgroundView::UpdateBubbleViewArrow( | 571 void TrayBackgroundView::UpdateBubbleViewArrow( |
| 572 views::TrayBubbleView* bubble_view) { | 572 views::TrayBubbleView* bubble_view) { |
| 573 // Nothing to do here. | 573 // Nothing to do here. |
| 574 } | 574 } |
| 575 | 575 |
| 576 } // namespace ash | 576 } // namespace ash |
| OLD | NEW |