Index: mash/wm/property_util.h |
diff --git a/mash/wm/property_util.h b/mash/wm/property_util.h |
index 4e75b971e91dd978a01b3c9a40b1d1463e644a72..ee5a56cbc6c0f3ebadd4086dd1e1a35fce5ffe4d 100644 |
--- a/mash/wm/property_util.h |
+++ b/mash/wm/property_util.h |
@@ -26,6 +26,7 @@ class Shadow; |
// Utility functions to read values from properties & convert them to the |
// appropriate types. |
+void SetWindowShowState(mus::Window* window, mus::mojom::ShowState show_state); |
mus::mojom::ShowState GetWindowShowState(const mus::Window* window); |
void SetWindowUserSetBounds(mus::Window* window, const gfx::Rect& bounds); |
@@ -44,12 +45,14 @@ void SetRestoreBounds(mus::Window* window, const gfx::Rect& bounds); |
gfx::Rect GetRestoreBounds(const mus::Window* window); |
void SetShadow(mus::Window* window, Shadow* shadow); |
-Shadow* GetShadow(mus::Window* window); |
+Shadow* GetShadow(const mus::Window* window); |
-mus::mojom::WindowType GetWindowType(mus::Window* window); |
+mus::mojom::WindowType GetWindowType(const mus::Window* window); |
mus::mojom::WindowType GetWindowType( |
const mus::Window::SharedProperties& window); |
+base::string16 GetWindowTitle(const mus::Window* window); |
+ |
} // namespace wm |
} // namespace mash |