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/window_tree_connection.h" | 11 #include "components/mus/public/cpp/window_tree_connection.h" |
12 #include "components/mus/public/interfaces/window_tree.mojom.h" | 12 #include "components/mus/public/interfaces/window_tree.mojom.h" |
13 #include "mojo/converters/geometry/geometry_type_converters.h" | 13 #include "mojo/converters/geometry/geometry_type_converters.h" |
14 #include "mojo/converters/network/network_type_converters.h" | |
15 #include "mojo/shell/public/cpp/connection.h" | 14 #include "mojo/shell/public/cpp/connection.h" |
16 #include "mojo/shell/public/cpp/connector.h" | 15 #include "mojo/shell/public/cpp/connector.h" |
17 #include "ui/views/mus/native_widget_mus.h" | 16 #include "ui/views/mus/native_widget_mus.h" |
18 #include "ui/views/mus/screen_mus.h" | 17 #include "ui/views/mus/screen_mus.h" |
19 #include "ui/views/views_delegate.h" | 18 #include "ui/views/views_delegate.h" |
20 | 19 |
21 namespace views { | 20 namespace views { |
22 namespace { | 21 namespace { |
23 | 22 |
24 using WindowManagerConnectionPtr = | 23 using WindowManagerConnectionPtr = |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 92 |
94 void WindowManagerConnection::OnConnectionLost( | 93 void WindowManagerConnection::OnConnectionLost( |
95 mus::WindowTreeConnection* connection) {} | 94 mus::WindowTreeConnection* connection) {} |
96 | 95 |
97 void WindowManagerConnection::OnWindowManagerFrameValuesChanged() { | 96 void WindowManagerConnection::OnWindowManagerFrameValuesChanged() { |
98 if (window_tree_connection_) | 97 if (window_tree_connection_) |
99 NativeWidgetMus::NotifyFrameChanged(window_tree_connection_.get()); | 98 NativeWidgetMus::NotifyFrameChanged(window_tree_connection_.get()); |
100 } | 99 } |
101 | 100 |
102 } // namespace views | 101 } // namespace views |
OLD | NEW |