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

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

Issue 2462753002: Use Ash's ShelfWindowWatcher for app panel windows. (Closed)
Patch Set: Add ShelfWindowWatcherTest, remove ChromeLauncherControllerImplTest panel use. Created 4 years, 1 month 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
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 #ifndef ASH_COMMON_WM_WINDOW_PROPERTY_H_ 5 #ifndef ASH_COMMON_WM_WINDOW_PROPERTY_H_
6 #define ASH_COMMON_WM_WINDOW_PROPERTY_H_ 6 #define ASH_COMMON_WM_WINDOW_PROPERTY_H_
7 7
8 namespace ash { 8 namespace ash {
9 9
10 enum class WmWindowProperty { 10 enum class WmWindowProperty {
James Cook 2016/11/02 17:53:44 nit: Add a comment pointing readers to ui/aura/cli
msw 2016/11/10 21:07:46 Done (in a prior CL).
11 // Not a valid property; used for property key translation purposes. 11 // Not a valid property; used for property key translation purposes.
12 INVALID_PROPERTY, 12 INVALID_PROPERTY,
13 13
14 // Type bool. 14 // Type bool.
15 ALWAYS_ON_TOP, 15 ALWAYS_ON_TOP,
16 16
17 // Type ImageSkia.
18 APP_ICON,
19
17 // Type bool. See aura::client:kExcludeFromMruKey for details. 20 // Type bool. See aura::client:kExcludeFromMruKey for details.
18 EXCLUDE_FROM_MRU, 21 EXCLUDE_FROM_MRU,
19 22
20 // Type int, but cast to ui::ModalType. 23 // Type int, but cast to ui::ModalType.
21 MODAL_TYPE, 24 MODAL_TYPE,
22 25
23 // Type int. 26 // Type int.
24 SHELF_ICON_RESOURCE_ID, 27 SHELF_ICON_RESOURCE_ID,
25 28
26 // Type int. 29 // Type int.
27 SHELF_ID, 30 SHELF_ID,
28 31
29 // Type int, but cast to ShelfItemType. 32 // Type int, but cast to ShelfItemType.
30 SHELF_ITEM_TYPE, 33 SHELF_ITEM_TYPE,
31 34
32 // Type bool. 35 // Type bool.
33 SNAP_CHILDREN_TO_PIXEL_BOUNDARY, 36 SNAP_CHILDREN_TO_PIXEL_BOUNDARY,
34 37
35 // Type SkColor. See aura::client::kTopViewColor for details. 38 // Type SkColor. See aura::client::kTopViewColor for details.
36 TOP_VIEW_COLOR, 39 TOP_VIEW_COLOR,
37 40
38 // Type int. See aura::client::kTopViewInset for details. 41 // Type int. See aura::client::kTopViewInset for details.
39 TOP_VIEW_INSET, 42 TOP_VIEW_INSET,
43
44 // Type ImageSkia.
45 WINDOW_ICON,
40 }; 46 };
41 47
42 } // namespace ash 48 } // namespace ash
43 49
44 #endif // ASH_COMMON_WM_WINDOW_PROPERTY_H_ 50 #endif // ASH_COMMON_WM_WINDOW_PROPERTY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698