| Index: ui/aura/client/aura_constants.h
|
| diff --git a/ui/aura/client/aura_constants.h b/ui/aura/client/aura_constants.h
|
| index 5999b850978c4f64c533ad574982aedddf71d6de..0cec1bcdf0fe79f76abe386e93cabbd84784c0eb 100644
|
| --- a/ui/aura/client/aura_constants.h
|
| +++ b/ui/aura/client/aura_constants.h
|
| @@ -9,6 +9,10 @@
|
| #include "ui/aura/window.h"
|
| #include "ui/base/ui_base_types.h"
|
|
|
| +#if defined(OS_ANDROID)
|
| +#include "base/android/jni_android.h"
|
| +#endif
|
| +
|
| namespace ui {
|
| class InputMethod;
|
| }
|
| @@ -18,6 +22,11 @@ namespace client {
|
|
|
| // Alphabetical sort.
|
|
|
| +#if defined(OS_ANDROID)
|
| +// A property key to store Android Activity associated with the root window.
|
| +AURA_EXPORT extern const WindowProperty<jobject>* const kActivityForRootWindow;
|
| +#endif
|
| +
|
| // A property key to store always-on-top flag.
|
| AURA_EXPORT extern const WindowProperty<bool>* const kAlwaysOnTopKey;
|
|
|
|
|