| 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 "ui/views/mus/window_manager_connection.h" | 5 #include "ui/views/mus/window_manager_connection.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
| 10 #include "base/threading/thread_local.h" | 10 #include "base/threading/thread_local.h" |
| 11 #include "components/mus/public/cpp/property_type_converters.h" | 11 #include "components/mus/public/cpp/property_type_converters.h" |
| 12 #include "components/mus/public/cpp/window.h" | 12 #include "components/mus/public/cpp/window.h" |
| 13 #include "components/mus/public/cpp/window_property.h" | 13 #include "components/mus/public/cpp/window_property.h" |
| 14 #include "components/mus/public/cpp/window_tree_connection.h" | 14 #include "components/mus/public/cpp/window_tree_connection.h" |
| 15 #include "components/mus/public/interfaces/event_matcher.mojom.h" | 15 #include "components/mus/public/interfaces/event_matcher.mojom.h" |
| 16 #include "components/mus/public/interfaces/window_tree.mojom.h" | 16 #include "components/mus/public/interfaces/window_tree.mojom.h" |
| 17 #include "services/shell/public/cpp/connection.h" | 17 #include "services/shell/public/cpp/connection.h" |
| 18 #include "services/shell/public/cpp/connector.h" | 18 #include "services/shell/public/cpp/connector.h" |
| 19 #include "ui/events/devices/device_data_manager.h" | 19 #include "ui/events/devices/device_data_manager.h" |
| 20 #include "ui/gfx/geometry/mojo/geometry_type_converters.h" | |
| 21 #include "ui/views/mus/native_widget_mus.h" | 20 #include "ui/views/mus/native_widget_mus.h" |
| 22 #include "ui/views/mus/screen_mus.h" | 21 #include "ui/views/mus/screen_mus.h" |
| 23 #include "ui/views/pointer_watcher.h" | 22 #include "ui/views/pointer_watcher.h" |
| 24 #include "ui/views/views_delegate.h" | 23 #include "ui/views/views_delegate.h" |
| 25 | 24 |
| 26 namespace views { | 25 namespace views { |
| 27 namespace { | 26 namespace { |
| 28 | 27 |
| 29 using WindowManagerConnectionPtr = | 28 using WindowManagerConnectionPtr = |
| 30 base::ThreadLocalPointer<views::WindowManagerConnection>; | 29 base::ThreadLocalPointer<views::WindowManagerConnection>; |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 void WindowManagerConnection::OnWindowManagerFrameValuesChanged() { | 169 void WindowManagerConnection::OnWindowManagerFrameValuesChanged() { |
| 171 if (window_tree_connection_) | 170 if (window_tree_connection_) |
| 172 NativeWidgetMus::NotifyFrameChanged(window_tree_connection_.get()); | 171 NativeWidgetMus::NotifyFrameChanged(window_tree_connection_.get()); |
| 173 } | 172 } |
| 174 | 173 |
| 175 gfx::Point WindowManagerConnection::GetCursorScreenPoint() { | 174 gfx::Point WindowManagerConnection::GetCursorScreenPoint() { |
| 176 return window_tree_connection_->GetCursorScreenPoint(); | 175 return window_tree_connection_->GetCursorScreenPoint(); |
| 177 } | 176 } |
| 178 | 177 |
| 179 } // namespace views | 178 } // namespace views |
| OLD | NEW |