Index: ui/aura/aura_constants.h |
diff --git a/ui/aura/aura_constants.h b/ui/aura/aura_constants.h |
index 66a691141a2e7ed1a2a84d1b2a1054ed9413a98a..ec42879658b92872721a41def20c789eccad1acc 100644 |
--- a/ui/aura/aura_constants.h |
+++ b/ui/aura/aura_constants.h |
@@ -11,17 +11,20 @@ |
namespace aura { |
// Window property keys that are shared between aura_shell and chrome/views. |
+// A property key to store always-on-top flag. The type of the value is boolean. |
+AURA_EXPORT extern const char kAlwaysOnTopKey[]; |
+ |
// A property key to store the restore bounds for a window. The type |
// of the value is |gfx::Rect*|. |
-AURA_EXPORT extern const char* kRestoreBoundsKey; |
+AURA_EXPORT extern const char kRestoreBoundsKey[]; |
// A property key to store ui::WindowShowState for a window. |
// See ui/base/ui_base_types.h for its definition. |
-AURA_EXPORT extern const char* kShowStateKey; |
+AURA_EXPORT extern const char kShowStateKey[]; |
// A property key to store tooltip text for a window. The type of the value |
-// is |std::string*|. |
-AURA_EXPORT extern const char* kTooltipTextKey; |
+// is |string16*|. |
+AURA_EXPORT extern const char kTooltipTextKey[]; |
} // namespace aura |