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

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

Issue 2563343002: Remove extension_misc::IsImeMenuExtensionId. (Closed)
Patch Set: Remove kExcludeFromMruKey. Created 4 years 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/common/extensions/extension_constants.cc ('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 <string> 8 #include <string>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 // pointer metrics. See AppType in ash/shared/app_types.h for more details. 46 // pointer metrics. See AppType in ash/shared/app_types.h for more details.
47 AURA_EXPORT extern const WindowProperty<int>* const kAppType; 47 AURA_EXPORT extern const WindowProperty<int>* const kAppType;
48 48
49 // A property key to store if a window is a constrained window or not. 49 // A property key to store if a window is a constrained window or not.
50 AURA_EXPORT extern const WindowProperty<bool>* const kConstrainedWindowKey; 50 AURA_EXPORT extern const WindowProperty<bool>* const kConstrainedWindowKey;
51 51
52 // A property key to indicate that a window should show that it deserves 52 // A property key to indicate that a window should show that it deserves
53 // attention. 53 // attention.
54 AURA_EXPORT extern const aura::WindowProperty<bool>* const kDrawAttentionKey; 54 AURA_EXPORT extern const aura::WindowProperty<bool>* const kDrawAttentionKey;
55 55
56 // A property key to indicate that a window should be excluded from the most
57 // recently used windows list.
58 AURA_EXPORT extern const aura::WindowProperty<bool>* const kExcludeFromMruKey;
59
60 // A property key to indicate that a window is being "mirrored" and its contents 56 // A property key to indicate that a window is being "mirrored" and its contents
61 // should render regardless of its actual visibility state. 57 // should render regardless of its actual visibility state.
62 AURA_EXPORT extern const aura::WindowProperty<bool>* const kMirroringEnabledKey; 58 AURA_EXPORT extern const aura::WindowProperty<bool>* const kMirroringEnabledKey;
63 59
64 // A property key to store the host window of a window. This lets 60 // A property key to store the host window of a window. This lets
65 // WebContentsViews find the windows that should constrain NPAPI plugins. 61 // WebContentsViews find the windows that should constrain NPAPI plugins.
66 AURA_EXPORT extern const WindowProperty<Window*>* const kHostWindowKey; 62 AURA_EXPORT extern const WindowProperty<Window*>* const kHostWindowKey;
67 63
68 // A property key to store the window modality. 64 // A property key to store the window modality.
69 AURA_EXPORT extern const WindowProperty<ui::ModalType>* const kModalKey; 65 AURA_EXPORT extern const WindowProperty<ui::ModalType>* const kModalKey;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 104
109 AURA_EXPORT extern const aura::WindowProperty<ui::mojom::WindowType>* const 105 AURA_EXPORT extern const aura::WindowProperty<ui::mojom::WindowType>* const
110 kWindowTypeKey; 106 kWindowTypeKey;
111 107
112 // Alphabetical sort. 108 // Alphabetical sort.
113 109
114 } // namespace client 110 } // namespace client
115 } // namespace aura 111 } // namespace aura
116 112
117 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ 113 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/extension_constants.cc ('k') | ui/aura/client/aura_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698