| Index: ui/views/mus/native_widget_mus.h
|
| diff --git a/ui/views/mus/native_widget_mus.h b/ui/views/mus/native_widget_mus.h
|
| index 2e50183eeb6e711085c4807a1523a922a807da34..2bd29b5c1d28ff4683736e66db6f849685a9c803 100644
|
| --- a/ui/views/mus/native_widget_mus.h
|
| +++ b/ui/views/mus/native_widget_mus.h
|
| @@ -232,6 +232,12 @@ class VIEWS_MUS_EXPORT NativeWidgetMus
|
| return window_tree_host();
|
| }
|
|
|
| + // Returns true if this NativeWidgetMus exists on the window manager side
|
| + // to provide the frame decorations.
|
| + bool is_parallel_widget_in_window_manager() {
|
| + return is_parallel_widget_in_window_manager_;
|
| + }
|
| +
|
| void set_last_cursor(ui::mojom::Cursor cursor) { last_cursor_ = cursor; }
|
| void SetShowState(ui::mojom::ShowState show_state);
|
|
|
| @@ -248,7 +254,7 @@ class VIEWS_MUS_EXPORT NativeWidgetMus
|
|
|
| internal::NativeWidgetDelegate* native_widget_delegate_;
|
|
|
| - const ui::mojom::SurfaceType surface_type_;
|
| + const bool is_parallel_widget_in_window_manager_;
|
| ui::mojom::ShowState show_state_before_fullscreen_;
|
|
|
| // See class documentation for Widget in widget.h for a note about ownership.
|
|
|