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

Side by Side Diff: ash/mus/container_ids.cc

Issue 2092343002: Touch HUD app for mustash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change window manager connection unittest to original Created 4 years, 5 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/mus/BUILD.gn ('k') | ash/mus/root_window_controller.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/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
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
OLDNEW
« no previous file with comments | « ash/mus/BUILD.gn ('k') | ash/mus/root_window_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698