| Index: ui/aura/client/aura_constants.h
|
| diff --git a/ui/aura/client/aura_constants.h b/ui/aura/client/aura_constants.h
|
| index 98689e2523bac4a7aa2cdf8035777787b3f4b9e7..0bfd2fc538e6601ae4c7f7da2c3a37c9f1e14020 100644
|
| --- a/ui/aura/client/aura_constants.h
|
| +++ b/ui/aura/client/aura_constants.h
|
| @@ -21,6 +21,7 @@ enum class WindowType;
|
|
|
| namespace aura {
|
| namespace client {
|
| +class FocusClient;
|
|
|
| enum class WindowEmbedType {
|
| NONE,
|
| @@ -62,6 +63,9 @@ AURA_EXPORT extern const WindowProperty<bool>* const kCreatedByUserGesture;
|
| // attention.
|
| AURA_EXPORT extern const aura::WindowProperty<bool>* const kDrawAttentionKey;
|
|
|
| +// A property key to store the focus client on the window.
|
| +AURA_EXPORT extern const WindowProperty<FocusClient*>* const kFocusClientKey;
|
| +
|
| // A property key to store the host window of a window. This lets
|
| // WebContentsViews find the windows that should constrain NPAPI plugins.
|
| AURA_EXPORT extern const WindowProperty<Window*>* const kHostWindowKey;
|
|
|