| 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 "components/exo/shell_surface.h" | 5 #include "components/exo/shell_surface.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "ash/frame/custom_frame_view_ash.h" | 9 #include "ash/frame/custom_frame_view_ash.h" |
| 10 #include "ash/public/cpp/shell_window_ids.h" | 10 #include "ash/public/cpp/shell_window_ids.h" |
| 11 #include "ash/public/cpp/window_properties.h" | 11 #include "ash/public/cpp/window_properties.h" |
| 12 #include "ash/public/interfaces/window_pin_type.mojom.h" | 12 #include "ash/public/interfaces/window_pin_type.mojom.h" |
| 13 #include "ash/shelf/wm_shelf.h" | 13 #include "ash/shelf/wm_shelf.h" |
| 14 #include "ash/shell_port.h" | 14 #include "ash/shell_port.h" |
| 15 #include "ash/wm/drag_window_resizer.h" | 15 #include "ash/wm/drag_window_resizer.h" |
| 16 #include "ash/wm/window_resizer.h" | 16 #include "ash/wm/window_resizer.h" |
| 17 #include "ash/wm/window_state.h" | 17 #include "ash/wm/window_state.h" |
| 18 #include "ash/wm/window_state_aura.h" | |
| 19 #include "ash/wm/window_util.h" | 18 #include "ash/wm/window_util.h" |
| 20 #include "ash/wm_window.h" | 19 #include "ash/wm_window.h" |
| 21 #include "base/logging.h" | 20 #include "base/logging.h" |
| 22 #include "base/macros.h" | 21 #include "base/macros.h" |
| 23 #include "base/memory/ptr_util.h" | 22 #include "base/memory/ptr_util.h" |
| 24 #include "base/strings/utf_string_conversions.h" | 23 #include "base/strings/utf_string_conversions.h" |
| 25 #include "base/trace_event/trace_event.h" | 24 #include "base/trace_event/trace_event.h" |
| 26 #include "base/trace_event/trace_event_argument.h" | 25 #include "base/trace_event/trace_event_argument.h" |
| 27 #include "components/exo/surface.h" | 26 #include "components/exo/surface.h" |
| 28 #include "ui/aura/client/aura_constants.h" | 27 #include "ui/aura/client/aura_constants.h" |
| (...skipping 1638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1667 gfx::Point ShellSurface::GetMouseLocation() const { | 1666 gfx::Point ShellSurface::GetMouseLocation() const { |
| 1668 aura::Window* const root_window = widget_->GetNativeWindow()->GetRootWindow(); | 1667 aura::Window* const root_window = widget_->GetNativeWindow()->GetRootWindow(); |
| 1669 gfx::Point location = | 1668 gfx::Point location = |
| 1670 root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot(); | 1669 root_window->GetHost()->dispatcher()->GetLastMouseLocationInRoot(); |
| 1671 aura::Window::ConvertPointToTarget( | 1670 aura::Window::ConvertPointToTarget( |
| 1672 root_window, widget_->GetNativeWindow()->parent(), &location); | 1671 root_window, widget_->GetNativeWindow()->parent(), &location); |
| 1673 return location; | 1672 return location; |
| 1674 } | 1673 } |
| 1675 | 1674 |
| 1676 } // namespace exo | 1675 } // namespace exo |
| OLD | NEW |