| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/palette/palette_tray.h" | 5 #include "ash/system/palette/palette_tray.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/session/session_state_delegate.h" | 8 #include "ash/common/session/session_state_delegate.h" |
| 9 #include "ash/common/shelf/shelf_constants.h" | |
| 10 #include "ash/common/shelf/wm_shelf.h" | |
| 11 #include "ash/common/shelf/wm_shelf_util.h" | |
| 12 #include "ash/common/wm_shell.h" | 9 #include "ash/common/wm_shell.h" |
| 13 #include "ash/common/wm_window.h" | 10 #include "ash/common/wm_window.h" |
| 14 #include "ash/public/cpp/shell_window_ids.h" | 11 #include "ash/public/cpp/shell_window_ids.h" |
| 15 #include "ash/resources/grit/ash_resources.h" | 12 #include "ash/resources/grit/ash_resources.h" |
| 16 #include "ash/resources/vector_icons/vector_icons.h" | 13 #include "ash/resources/vector_icons/vector_icons.h" |
| 17 #include "ash/root_window_controller.h" | 14 #include "ash/root_window_controller.h" |
| 15 #include "ash/shelf/shelf_constants.h" |
| 16 #include "ash/shelf/wm_shelf.h" |
| 17 #include "ash/shelf/wm_shelf_util.h" |
| 18 #include "ash/strings/grit/ash_strings.h" | 18 #include "ash/strings/grit/ash_strings.h" |
| 19 #include "ash/system/palette/palette_tool_manager.h" | 19 #include "ash/system/palette/palette_tool_manager.h" |
| 20 #include "ash/system/palette/palette_utils.h" | 20 #include "ash/system/palette/palette_utils.h" |
| 21 #include "ash/system/tray/system_menu_button.h" | 21 #include "ash/system/tray/system_menu_button.h" |
| 22 #include "ash/system/tray/system_tray_controller.h" | 22 #include "ash/system/tray/system_tray_controller.h" |
| 23 #include "ash/system/tray/system_tray_delegate.h" | 23 #include "ash/system/tray/system_tray_delegate.h" |
| 24 #include "ash/system/tray/tray_bubble_wrapper.h" | 24 #include "ash/system/tray/tray_bubble_wrapper.h" |
| 25 #include "ash/system/tray/tray_constants.h" | 25 #include "ash/system/tray/tray_constants.h" |
| 26 #include "ash/system/tray/tray_popup_header_button.h" | 26 #include "ash/system/tray/tray_popup_header_button.h" |
| 27 #include "ash/system/tray/tray_popup_item_style.h" | 27 #include "ash/system/tray/tray_popup_item_style.h" |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 428 UpdateIconVisibility(); | 428 UpdateIconVisibility(); |
| 429 } | 429 } |
| 430 } | 430 } |
| 431 | 431 |
| 432 void PaletteTray::UpdateIconVisibility() { | 432 void PaletteTray::UpdateIconVisibility() { |
| 433 SetVisible(is_palette_enabled_ && palette_utils::HasStylusInput() && | 433 SetVisible(is_palette_enabled_ && palette_utils::HasStylusInput() && |
| 434 IsInUserSession()); | 434 IsInUserSession()); |
| 435 } | 435 } |
| 436 | 436 |
| 437 } // namespace ash | 437 } // namespace ash |
| OLD | NEW |