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

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

Issue 2381183002: mash: Fix shelf window property use in Chrome. (Closed)
Patch Set: Address comments. Created 4 years, 2 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/aura/wm_window_aura.cc ('k') | ash/mus/bridge/wm_window_mus.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 #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 {
11 // Not a valid property; used for property key translation purposes.
12 INVALID_PROPERTY,
13
11 // Type bool. 14 // Type bool.
12 ALWAYS_ON_TOP, 15 ALWAYS_ON_TOP,
13 16
14 // Type bool. See aura::client:kExcludeFromMruKey for details. 17 // Type bool. See aura::client:kExcludeFromMruKey for details.
15 EXCLUDE_FROM_MRU, 18 EXCLUDE_FROM_MRU,
16 19
17 // Type int, but cast to ui::ModalType. 20 // Type int, but cast to ui::ModalType.
18 MODAL_TYPE, 21 MODAL_TYPE,
19 22
20 // Type int. 23 // Type int.
(...skipping 11 matching lines...) Expand all
32 // Type SkColor. See aura::client::kTopViewColor for details. 35 // Type SkColor. See aura::client::kTopViewColor for details.
33 TOP_VIEW_COLOR, 36 TOP_VIEW_COLOR,
34 37
35 // Type int. See aura::client::kTopViewInset for details. 38 // Type int. See aura::client::kTopViewInset for details.
36 TOP_VIEW_INSET, 39 TOP_VIEW_INSET,
37 }; 40 };
38 41
39 } // namespace ash 42 } // namespace ash
40 43
41 #endif // ASH_COMMON_WM_WINDOW_PROPERTY_H_ 44 #endif // ASH_COMMON_WM_WINDOW_PROPERTY_H_
OLDNEW
« no previous file with comments | « ash/aura/wm_window_aura.cc ('k') | ash/mus/bridge/wm_window_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698