Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: ui/views/mus/window_manager_connection.cc

Issue 1881253002: mus: Implement ScreenMus::GetCursorScreenPoint(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't crash on empty roots. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 void WindowManagerConnection::OnEmbed(mus::Window* root) {} 99 void WindowManagerConnection::OnEmbed(mus::Window* root) {}
100 100
101 void WindowManagerConnection::OnConnectionLost( 101 void WindowManagerConnection::OnConnectionLost(
102 mus::WindowTreeConnection* connection) {} 102 mus::WindowTreeConnection* connection) {}
103 103
104 void WindowManagerConnection::OnWindowManagerFrameValuesChanged() { 104 void WindowManagerConnection::OnWindowManagerFrameValuesChanged() {
105 if (window_tree_connection_) 105 if (window_tree_connection_)
106 NativeWidgetMus::NotifyFrameChanged(window_tree_connection_.get()); 106 NativeWidgetMus::NotifyFrameChanged(window_tree_connection_.get());
107 } 107 }
108 108
109 gfx::Point WindowManagerConnection::GetCursorScreenPoint() {
110 return window_tree_connection_->GetCursorScreenPoint();
111 }
112
109 } // namespace views 113 } // namespace views
OLDNEW
« components/mus/ws/window_tree.cc ('K') | « ui/views/mus/window_manager_connection.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698