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/mus/container_ids.h" | 5 #include "ash/mus/container_ids.h" |
6 | 6 |
7 #include "ash/common/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; |
(...skipping 18 matching lines...) Expand all Loading... |
29 case Container::BUBBLES: | 29 case Container::BUBBLES: |
30 // TODO(sky): this mapping isn't right, but BUBBLES should go away once | 30 // TODO(sky): this mapping isn't right, but BUBBLES should go away once |
31 // http://crbug.com/616859 lands. | 31 // http://crbug.com/616859 lands. |
32 return kShellWindowId_SettingBubbleContainer; | 32 return kShellWindowId_SettingBubbleContainer; |
33 | 33 |
34 case Container::MENUS: | 34 case Container::MENUS: |
35 return kShellWindowId_MenuContainer; | 35 return kShellWindowId_MenuContainer; |
36 | 36 |
37 case Container::DRAG_AND_TOOLTIPS: | 37 case Container::DRAG_AND_TOOLTIPS: |
38 return kShellWindowId_DragImageAndTooltipContainer; | 38 return kShellWindowId_DragImageAndTooltipContainer; |
| 39 |
| 40 case Container::OVERLAY: |
| 41 return kShellWindowId_OverlayContainer; |
39 } | 42 } |
40 return kShellWindowId_Invalid; | 43 return kShellWindowId_Invalid; |
41 } | 44 } |
42 | 45 |
43 } // namespace mus | 46 } // namespace mus |
44 } // namespace ash | 47 } // namespace ash |
OLD | NEW |