| 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/common/system/chromeos/palette/palette_utils.h" | 5 #include "ash/common/system/chromeos/palette/palette_utils.h" |
| 6 | 6 |
| 7 #include "ash/common/ash_switches.h" | 7 #include "ash/common/ash_switches.h" |
| 8 #include "ash/common/shelf/wm_shelf.h" |
| 9 #include "ash/common/system/chromeos/palette/palette_tray.h" |
| 10 #include "ash/common/system/status_area_widget.h" |
| 11 #include "ash/common/wm_shell.h" |
| 12 #include "ash/common/wm_window.h" |
| 8 #include "base/command_line.h" | 13 #include "base/command_line.h" |
| 14 #include "ui/gfx/geometry/point.h" |
| 9 | 15 |
| 10 namespace ash { | 16 namespace ash { |
| 11 | 17 |
| 12 bool IsPaletteFeatureEnabled() { | 18 bool IsPaletteFeatureEnabled() { |
| 13 return base::CommandLine::ForCurrentProcess()->HasSwitch( | 19 return base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 14 switches::kAshEnablePalette); | 20 switches::kAshEnablePalette); |
| 15 } | 21 } |
| 16 | 22 |
| 17 bool ArePaletteExperimentalFeaturesEnabled() { | 23 bool ArePaletteExperimentalFeaturesEnabled() { |
| 18 return base::CommandLine::ForCurrentProcess()->HasSwitch( | 24 return base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 19 switches::kAshEnableExperimentalPaletteFeatures); | 25 switches::kAshEnableExperimentalPaletteFeatures); |
| 20 } | 26 } |
| 21 | 27 |
| 28 bool PaletteContainsPointInScreen(const gfx::Point& point) { |
| 29 for (WmWindow* window : WmShell::Get()->GetAllRootWindows()) { |
| 30 PaletteTray* palette_tray = |
| 31 WmShelf::ForWindow(window)->GetStatusAreaWidget()->palette_tray(); |
| 32 if (palette_tray && palette_tray->ContainsPointInScreen(point)) |
| 33 return true; |
| 34 } |
| 35 |
| 36 return false; |
| 37 } |
| 38 |
| 22 } // namespace ash | 39 } // namespace ash |
| OLD | NEW |