| 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/shelf_constants.h" | 8 #include "ash/common/shelf/shelf_constants.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/tray/tray_constants.h" | 12 #include "ash/common/system/tray/tray_constants.h" |
| 13 #include "ash/root_window_controller.h" | |
| 14 #include "ash/screen_util.h" | 13 #include "ash/screen_util.h" |
| 15 #include "ash/shell.h" | 14 #include "ash/shell.h" |
| 16 #include "ash/system/status_area_widget.h" | 15 #include "ash/system/status_area_widget.h" |
| 17 #include "ash/system/status_area_widget_delegate.h" | 16 #include "ash/system/status_area_widget_delegate.h" |
| 18 #include "ash/system/tray/system_tray.h" | 17 #include "ash/system/tray/system_tray.h" |
| 19 #include "ash/system/tray/tray_event_filter.h" | 18 #include "ash/system/tray/tray_event_filter.h" |
| 20 #include "ash/wm/window_animations.h" | 19 #include "ash/wm/window_animations.h" |
| 21 #include "base/command_line.h" | 20 #include "base/command_line.h" |
| 22 #include "grit/ash_resources.h" | 21 #include "grit/ash_resources.h" |
| 23 #include "ui/accessibility/ax_view_state.h" | 22 #include "ui/accessibility/ax_view_state.h" |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 return; | 527 return; |
| 529 SchedulePaint(); | 528 SchedulePaint(); |
| 530 } | 529 } |
| 531 | 530 |
| 532 void TrayBackgroundView::UpdateBubbleViewArrow( | 531 void TrayBackgroundView::UpdateBubbleViewArrow( |
| 533 views::TrayBubbleView* bubble_view) { | 532 views::TrayBubbleView* bubble_view) { |
| 534 // Nothing to do here. | 533 // Nothing to do here. |
| 535 } | 534 } |
| 536 | 535 |
| 537 } // namespace ash | 536 } // namespace ash |
| OLD | NEW |