OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ASH_MUS_PROPERTY_UTIL_H_ | 5 #ifndef ASH_MUS_PROPERTY_UTIL_H_ |
6 #define ASH_MUS_PROPERTY_UTIL_H_ | 6 #define ASH_MUS_PROPERTY_UTIL_H_ |
7 | 7 |
8 #include "ash/public/interfaces/ash_window_type.mojom.h" | 8 #include "ash/public/interfaces/ash_window_type.mojom.h" |
9 #include "ash/public/interfaces/container.mojom.h" | 9 #include "ash/public/interfaces/container.mojom.h" |
10 #include "services/ui/public/cpp/window.h" | 10 #include "services/ui/public/cpp/window.h" |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 73 |
74 void SetWindowIsJanky(ui::Window* window, bool janky); | 74 void SetWindowIsJanky(ui::Window* window, bool janky); |
75 bool IsWindowJanky(ui::Window* window); | 75 bool IsWindowJanky(ui::Window* window); |
76 bool IsWindowJankyProperty(const void* key); | 76 bool IsWindowJankyProperty(const void* key); |
77 | 77 |
78 void SetAlwaysOnTop(ui::Window* window, bool value); | 78 void SetAlwaysOnTop(ui::Window* window, bool value); |
79 bool IsAlwaysOnTop(ui::Window* window); | 79 bool IsAlwaysOnTop(ui::Window* window); |
80 | 80 |
81 bool ShouldRemoveStandardFrame(ui::Window* window); | 81 bool ShouldRemoveStandardFrame(ui::Window* window); |
82 | 82 |
| 83 // See description of |WindowManager::kRendererParentTitleArea_Property|. |
| 84 bool ShouldRenderParentTitleArea(ui::Window* window); |
| 85 |
83 } // namespace mus | 86 } // namespace mus |
84 } // namespace ash | 87 } // namespace ash |
85 | 88 |
86 #endif // ASH_MUS_PROPERTY_UTIL_H_ | 89 #endif // ASH_MUS_PROPERTY_UTIL_H_ |
OLD | NEW |