Index: ash/mus/window_properties.h |
diff --git a/ash/mus/window_properties.h b/ash/mus/window_properties.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b9126e3393ba57edfd655937219606c9818a66cf |
--- /dev/null |
+++ b/ash/mus/window_properties.h |
@@ -0,0 +1,23 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef ASH_MUS_WINDOW_PROPERTIES_H_ |
+#define ASH_MUS_WINDOW_PROPERTIES_H_ |
+ |
+#include "ui/aura/window.h" |
+ |
+namespace ash { |
+namespace mus { |
+ |
+// Maps to ui::mojom::WindowManager::kRendererParentTitleArea_Property. |
+extern const aura::WindowProperty<bool>* const kRenderTitleAreaProperty; |
+ |
+// Set to true if the window server tells us the window is janky (see |
+// WindowManagerDelegate::OnWmClientJankinessChanged()). |
+extern const aura::WindowProperty<bool>* const kWindowIsJanky; |
+ |
+} // namespace mus |
+} // namespace ash |
+ |
+#endif // ASH_MUS_WINDOW_PROPERTIES_H_ |