Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: ash/system/palette/palette_tray.cc

Issue 2734733002: Revert "chromeos: Move files in //ash/common to //ash, part 3" (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/system/palette/palette_tray.h ('k') | ash/system/palette/palette_utils.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/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"
9 #include "ash/common/wm_shell.h"
10 #include "ash/common/wm_window.h"
8 #include "ash/public/cpp/shell_window_ids.h" 11 #include "ash/public/cpp/shell_window_ids.h"
9 #include "ash/resources/grit/ash_resources.h" 12 #include "ash/resources/grit/ash_resources.h"
10 #include "ash/resources/vector_icons/vector_icons.h" 13 #include "ash/resources/vector_icons/vector_icons.h"
11 #include "ash/root_window_controller.h" 14 #include "ash/root_window_controller.h"
12 #include "ash/session/session_state_delegate.h"
13 #include "ash/shelf/shelf_constants.h" 15 #include "ash/shelf/shelf_constants.h"
14 #include "ash/shelf/wm_shelf.h" 16 #include "ash/shelf/wm_shelf.h"
15 #include "ash/shelf/wm_shelf_util.h" 17 #include "ash/shelf/wm_shelf_util.h"
16 #include "ash/strings/grit/ash_strings.h" 18 #include "ash/strings/grit/ash_strings.h"
17 #include "ash/system/palette/palette_tool_manager.h" 19 #include "ash/system/palette/palette_tool_manager.h"
18 #include "ash/system/palette/palette_utils.h" 20 #include "ash/system/palette/palette_utils.h"
19 #include "ash/system/tray/system_menu_button.h" 21 #include "ash/system/tray/system_menu_button.h"
20 #include "ash/system/tray/system_tray_controller.h" 22 #include "ash/system/tray/system_tray_controller.h"
21 #include "ash/system/tray/system_tray_delegate.h" 23 #include "ash/system/tray/system_tray_delegate.h"
22 #include "ash/system/tray/tray_bubble_wrapper.h" 24 #include "ash/system/tray/tray_bubble_wrapper.h"
23 #include "ash/system/tray/tray_constants.h" 25 #include "ash/system/tray/tray_constants.h"
24 #include "ash/system/tray/tray_popup_header_button.h" 26 #include "ash/system/tray/tray_popup_header_button.h"
25 #include "ash/system/tray/tray_popup_item_style.h" 27 #include "ash/system/tray/tray_popup_item_style.h"
26 #include "ash/wm_shell.h"
27 #include "ash/wm_window.h"
28 #include "base/metrics/histogram_macros.h" 28 #include "base/metrics/histogram_macros.h"
29 #include "ui/base/l10n/l10n_util.h" 29 #include "ui/base/l10n/l10n_util.h"
30 #include "ui/base/resource/resource_bundle.h" 30 #include "ui/base/resource/resource_bundle.h"
31 #include "ui/events/devices/input_device_manager.h" 31 #include "ui/events/devices/input_device_manager.h"
32 #include "ui/events/devices/stylus_state.h" 32 #include "ui/events/devices/stylus_state.h"
33 #include "ui/gfx/color_palette.h" 33 #include "ui/gfx/color_palette.h"
34 #include "ui/gfx/paint_vector_icon.h" 34 #include "ui/gfx/paint_vector_icon.h"
35 #include "ui/gfx/vector_icons_public.h" 35 #include "ui/gfx/vector_icons_public.h"
36 #include "ui/views/controls/image_view.h" 36 #include "ui/views/controls/image_view.h"
37 #include "ui/views/controls/label.h" 37 #include "ui/views/controls/label.h"
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « ash/system/palette/palette_tray.h ('k') | ash/system/palette/palette_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698