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

Side by Side Diff: ui/aura/client/aura_constants.h

Issue 623613004: Revert of Make WindowState::CanMinimize() take into account WidgetDelegate::CanMinimize() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « chrome/chrome_tests.gypi ('k') | ui/aura/client/aura_constants.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 UI_AURA_CLIENT_AURA_CONSTANTS_H_ 5 #ifndef UI_AURA_CLIENT_AURA_CONSTANTS_H_
6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_ 6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_
7 7
8 #include "ui/aura/aura_export.h" 8 #include "ui/aura/aura_export.h"
9 #include "ui/aura/window.h" 9 #include "ui/aura/window.h"
10 #include "ui/base/ui_base_types.h" 10 #include "ui/base/ui_base_types.h"
(...skipping 10 matching lines...) Expand all
21 // A property key to store always-on-top flag. 21 // A property key to store always-on-top flag.
22 AURA_EXPORT extern const WindowProperty<bool>* const kAlwaysOnTopKey; 22 AURA_EXPORT extern const WindowProperty<bool>* const kAlwaysOnTopKey;
23 23
24 // A property key to store whether animations are disabled for the window. Type 24 // A property key to store whether animations are disabled for the window. Type
25 // of value is an int. 25 // of value is an int.
26 AURA_EXPORT extern const WindowProperty<bool>* const kAnimationsDisabledKey; 26 AURA_EXPORT extern const WindowProperty<bool>* const kAnimationsDisabledKey;
27 27
28 // A property key to store the can-maximize flag. 28 // A property key to store the can-maximize flag.
29 AURA_EXPORT extern const WindowProperty<bool>* const kCanMaximizeKey; 29 AURA_EXPORT extern const WindowProperty<bool>* const kCanMaximizeKey;
30 30
31 // A property key to store the can-minimize flag.
32 AURA_EXPORT extern const WindowProperty<bool>* const kCanMinimizeKey;
33
34 // A property key to store the can-resize flag. 31 // A property key to store the can-resize flag.
35 AURA_EXPORT extern const WindowProperty<bool>* const kCanResizeKey; 32 AURA_EXPORT extern const WindowProperty<bool>* const kCanResizeKey;
36 33
37 // A property key to store if a window is a constrained window or not. 34 // A property key to store if a window is a constrained window or not.
38 AURA_EXPORT extern const WindowProperty<bool>* const kConstrainedWindowKey; 35 AURA_EXPORT extern const WindowProperty<bool>* const kConstrainedWindowKey;
39 36
40 // A property key to indicate that a window should show that it deserves 37 // A property key to indicate that a window should show that it deserves
41 // attention. 38 // attention.
42 AURA_EXPORT extern const aura::WindowProperty<bool>* const kDrawAttentionKey; 39 AURA_EXPORT extern const aura::WindowProperty<bool>* const kDrawAttentionKey;
43 40
(...skipping 20 matching lines...) Expand all
64 // See ui/base/ui_base_types.h for its definition. 61 // See ui/base/ui_base_types.h for its definition.
65 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const 62 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const
66 kShowStateKey; 63 kShowStateKey;
67 64
68 // Alphabetical sort. 65 // Alphabetical sort.
69 66
70 } // namespace client 67 } // namespace client
71 } // namespace aura 68 } // namespace aura
72 69
73 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ 70 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | ui/aura/client/aura_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698