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 "mash/wm/container_ids.h" | 5 #include "mash/wm/container_ids.h" |
6 | 6 |
7 #include "ash/common/wm/wm_shell_window_ids.h" | 7 #include "ash/common/shell_window_ids.h" |
8 #include "ash/public/interfaces/container.mojom.h" | 8 #include "ash/public/interfaces/container.mojom.h" |
9 | 9 |
10 using ash::mojom::Container; | 10 using ash::mojom::Container; |
11 | 11 |
12 namespace mash { | 12 namespace mash { |
13 namespace wm { | 13 namespace wm { |
14 | 14 |
15 const Container kActivationContainers[] = { | 15 const Container kActivationContainers[] = { |
16 // TODO(sky): figure out right set of containers. I suspect this should be | 16 // TODO(sky): figure out right set of containers. I suspect this should be |
17 // all non containers. | 17 // all non containers. |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 return ash::kShellWindowId_DragImageAndTooltipContainer; | 142 return ash::kShellWindowId_DragImageAndTooltipContainer; |
143 | 143 |
144 case Container::COUNT: | 144 case Container::COUNT: |
145 return kUnknownAshId; | 145 return kUnknownAshId; |
146 } | 146 } |
147 return kUnknownAshId; | 147 return kUnknownAshId; |
148 } | 148 } |
149 | 149 |
150 } // namespace wm | 150 } // namespace wm |
151 } // namespace mash | 151 } // namespace mash |
OLD | NEW |