| 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" |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 void WindowManagerConnection::OnEmbed(mus::Window* root) {} | 109 void WindowManagerConnection::OnEmbed(mus::Window* root) {} |
| 110 | 110 |
| 111 void WindowManagerConnection::OnConnectionLost( | 111 void WindowManagerConnection::OnConnectionLost( |
| 112 mus::WindowTreeConnection* connection) {} | 112 mus::WindowTreeConnection* connection) {} |
| 113 | 113 |
| 114 void WindowManagerConnection::OnWindowManagerFrameValuesChanged() { | 114 void WindowManagerConnection::OnWindowManagerFrameValuesChanged() { |
| 115 if (window_tree_connection_) | 115 if (window_tree_connection_) |
| 116 NativeWidgetMus::NotifyFrameChanged(window_tree_connection_.get()); | 116 NativeWidgetMus::NotifyFrameChanged(window_tree_connection_.get()); |
| 117 } | 117 } |
| 118 | 118 |
| 119 gfx::Point WindowManagerConnection::GetCursorScreenPoint() { |
| 120 return window_tree_connection_->GetCursorScreenPoint(); |
| 121 } |
| 122 |
| 119 } // namespace views | 123 } // namespace views |
| OLD | NEW |