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

Side by Side Diff: ash/common/wm_window_property.h

Issue 2731663002: Remove WmWindowProperty (Closed)
Patch Set: rebase 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/common/wm_window.cc ('k') | ash/shell/window_watcher.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef ASH_COMMON_WM_WINDOW_PROPERTY_H_
6 #define ASH_COMMON_WM_WINDOW_PROPERTY_H_
7
8 namespace ash {
9
10 // See ui/aura/client/aura_constants.h for some more detailed descriptions.
11 enum class WmWindowProperty {
12 // Not a valid property; used for property key translation purposes.
13 INVALID_PROPERTY,
14
15 // Type bool.
16 ALWAYS_ON_TOP,
17
18 // Type ImageSkia.
19 APP_ICON,
20
21 // Type std::string.
22 APP_ID,
23
24 // Type bool.
25 DRAW_ATTENTION,
26
27 // Type int, but cast to ui::ModalType.
28 MODAL_TYPE,
29
30 // Type bool. See ash::kPanelAttachedKey for details.
31 PANEL_ATTACHED,
32
33 // Type int.
34 SHELF_ID,
35
36 // Type int, but cast to ShelfItemType.
37 SHELF_ITEM_TYPE,
38
39 // Type bool.
40 SNAP_CHILDREN_TO_PIXEL_BOUNDARY,
41
42 // Type SkColor. See aura::client::kTopViewColor for details.
43 TOP_VIEW_COLOR,
44
45 // Type int. See aura::client::kTopViewInset for details.
46 TOP_VIEW_INSET,
47
48 // Type ImageSkia.
49 WINDOW_ICON,
50 };
51
52 } // namespace ash
53
54 #endif // ASH_COMMON_WM_WINDOW_PROPERTY_H_
OLDNEW
« no previous file with comments | « ash/common/wm_window.cc ('k') | ash/shell/window_watcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698