Revert of Reland debugging for ipc related crash. (patchset #1 id:1 of https://codere...
[chromium-blink-merge.git] / ui / aura / client / aura_constants.h
blob5999b850978c4f64c533ad574982aedddf71d6de
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
3 // found in the LICENSE file.
5 #ifndef UI_AURA_CLIENT_AURA_CONSTANTS_H_
6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_
8 #include "ui/aura/aura_export.h"
9 #include "ui/aura/window.h"
10 #include "ui/base/ui_base_types.h"
12 namespace ui {
13 class InputMethod;
16 namespace aura {
17 namespace client {
19 // Alphabetical sort.
21 // A property key to store always-on-top flag.
22 AURA_EXPORT extern const WindowProperty<bool>* const kAlwaysOnTopKey;
24 // A property key to store whether animations are disabled for the window. Type
25 // of value is an int.
26 AURA_EXPORT extern const WindowProperty<bool>* const kAnimationsDisabledKey;
28 // A property key to store the can-maximize flag.
29 AURA_EXPORT extern const WindowProperty<bool>* const kCanMaximizeKey;
31 // A property key to store the can-minimize flag.
32 AURA_EXPORT extern const WindowProperty<bool>* const kCanMinimizeKey;
34 // A property key to store the can-resize flag.
35 AURA_EXPORT extern const WindowProperty<bool>* const kCanResizeKey;
37 // A property key to store if a window is a constrained window or not.
38 AURA_EXPORT extern const WindowProperty<bool>* const kConstrainedWindowKey;
40 // A property key to indicate that a window should show that it deserves
41 // attention.
42 AURA_EXPORT extern const aura::WindowProperty<bool>* const kDrawAttentionKey;
44 // A property key to store the host window of a window. This lets
45 // WebContentsViews find the windows that should constrain NPAPI plugins.
46 AURA_EXPORT extern const WindowProperty<Window*>* const kHostWindowKey;
48 // A property key to store the window modality.
49 AURA_EXPORT extern const WindowProperty<ui::ModalType>* const kModalKey;
51 // A property key to store the restore bounds for a window.
52 AURA_EXPORT extern const WindowProperty<gfx::Rect*>* const kRestoreBoundsKey;
54 // A property key to store ui::WindowShowState for restoring a window.
55 // Used in Ash to remember the show state before the window was minimized.
56 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const
57 kRestoreShowStateKey;
59 // A property key to store ui::WindowShowState for a window.
60 // See ui/base/ui_base_types.h for its definition.
61 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const
62 kShowStateKey;
64 // Alphabetical sort.
66 } // namespace client
67 } // namespace aura
69 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_