OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "ash/mus/frame/detached_title_area_renderer.h" | 5 #include "ash/mus/frame/detached_title_area_renderer.h" |
6 | 6 |
7 #include "ash/common/frame/header_view.h" | 7 #include "ash/frame/header_view.h" |
8 #include "ash/common/wm/window_state.h" | |
9 #include "ash/common/wm_window.h" | |
10 #include "ash/mus/property_util.h" | 8 #include "ash/mus/property_util.h" |
11 #include "ash/mus/window_manager.h" | 9 #include "ash/mus/window_manager.h" |
| 10 #include "ash/wm/window_state.h" |
| 11 #include "ash/wm_window.h" |
12 #include "ui/aura/client/aura_constants.h" | 12 #include "ui/aura/client/aura_constants.h" |
13 #include "ui/aura/client/transient_window_client.h" | 13 #include "ui/aura/client/transient_window_client.h" |
14 #include "ui/aura/mus/property_converter.h" | 14 #include "ui/aura/mus/property_converter.h" |
15 #include "ui/aura/mus/property_utils.h" | 15 #include "ui/aura/mus/property_utils.h" |
16 #include "ui/aura/window.h" | 16 #include "ui/aura/window.h" |
17 #include "ui/base/class_property.h" | 17 #include "ui/base/class_property.h" |
18 #include "ui/views/view.h" | 18 #include "ui/views/view.h" |
19 #include "ui/views/widget/native_widget_aura.h" | 19 #include "ui/views/widget/native_widget_aura.h" |
20 #include "ui/views/widget/widget.h" | 20 #include "ui/views/widget/widget.h" |
21 | 21 |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 } | 138 } |
139 | 139 |
140 void DetachedTitleAreaRendererForClient::DeleteDelegate() { | 140 void DetachedTitleAreaRendererForClient::DeleteDelegate() { |
141 delete this; | 141 delete this; |
142 } | 142 } |
143 | 143 |
144 DetachedTitleAreaRendererForClient::~DetachedTitleAreaRendererForClient() {} | 144 DetachedTitleAreaRendererForClient::~DetachedTitleAreaRendererForClient() {} |
145 | 145 |
146 } // namespace mus | 146 } // namespace mus |
147 } // namespace ash | 147 } // namespace ash |
OLD | NEW |