| 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 #include "ash/mus/non_client_frame_controller.h" | 5 #include "ash/mus/non_client_frame_controller.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "ash/common/ash_constants.h" | 13 #include "ash/ash_constants.h" |
| 14 #include "ash/common/ash_layout_constants.h" | 14 #include "ash/ash_layout_constants.h" |
| 15 #include "ash/common/frame/custom_frame_view_ash.h" | 15 #include "ash/frame/custom_frame_view_ash.h" |
| 16 #include "ash/common/wm/panels/panel_frame_view.h" | |
| 17 #include "ash/common/wm_window.h" | |
| 18 #include "ash/mus/frame/custom_frame_view_mus.h" | 16 #include "ash/mus/frame/custom_frame_view_mus.h" |
| 19 #include "ash/mus/frame/detached_title_area_renderer.h" | 17 #include "ash/mus/frame/detached_title_area_renderer.h" |
| 20 #include "ash/mus/move_event_handler.h" | 18 #include "ash/mus/move_event_handler.h" |
| 21 #include "ash/mus/property_util.h" | 19 #include "ash/mus/property_util.h" |
| 22 #include "ash/mus/window_manager.h" | 20 #include "ash/mus/window_manager.h" |
| 23 #include "ash/mus/window_properties.h" | 21 #include "ash/mus/window_properties.h" |
| 24 #include "ash/shared/immersive_fullscreen_controller_delegate.h" | 22 #include "ash/shared/immersive_fullscreen_controller_delegate.h" |
| 23 #include "ash/wm/panels/panel_frame_view.h" |
| 25 #include "ash/wm/window_properties.h" | 24 #include "ash/wm/window_properties.h" |
| 25 #include "ash/wm_window.h" |
| 26 #include "base/macros.h" | 26 #include "base/macros.h" |
| 27 #include "base/memory/ptr_util.h" | 27 #include "base/memory/ptr_util.h" |
| 28 #include "base/strings/utf_string_conversions.h" | 28 #include "base/strings/utf_string_conversions.h" |
| 29 #include "services/ui/public/interfaces/window_manager.mojom.h" | 29 #include "services/ui/public/interfaces/window_manager.mojom.h" |
| 30 #include "ui/aura/client/aura_constants.h" | 30 #include "ui/aura/client/aura_constants.h" |
| 31 #include "ui/aura/client/transient_window_client.h" | 31 #include "ui/aura/client/transient_window_client.h" |
| 32 #include "ui/aura/mus/property_converter.h" | 32 #include "ui/aura/mus/property_converter.h" |
| 33 #include "ui/aura/mus/property_utils.h" | 33 #include "ui/aura/mus/property_utils.h" |
| 34 #include "ui/aura/mus/window_manager_delegate.h" | 34 #include "ui/aura/mus/window_manager_delegate.h" |
| 35 #include "ui/aura/mus/window_port_mus.h" | 35 #include "ui/aura/mus/window_port_mus.h" |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 void NonClientFrameController::OnWillRestackTransientChildAbove( | 433 void NonClientFrameController::OnWillRestackTransientChildAbove( |
| 434 aura::Window* parent, | 434 aura::Window* parent, |
| 435 aura::Window* transient_child) {} | 435 aura::Window* transient_child) {} |
| 436 | 436 |
| 437 void NonClientFrameController::OnDidRestackTransientChildAbove( | 437 void NonClientFrameController::OnDidRestackTransientChildAbove( |
| 438 aura::Window* parent, | 438 aura::Window* parent, |
| 439 aura::Window* transient_child) {} | 439 aura::Window* transient_child) {} |
| 440 | 440 |
| 441 } // namespace mus | 441 } // namespace mus |
| 442 } // namespace ash | 442 } // namespace ash |
| OLD | NEW |