| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/aura/test/mus/window_tree_client_private.h" | 5 #include "ui/aura/test/mus/window_tree_client_private.h" |
| 6 | 6 |
| 7 #include "ui/aura/mus/window_port_mus.h" | 7 #include "ui/aura/mus/window_port_mus.h" |
| 8 #include "ui/aura/mus/window_tree_client.h" | 8 #include "ui/aura/mus/window_tree_client.h" |
| 9 #include "ui/aura/window.h" | 9 #include "ui/aura/window.h" |
| 10 #include "ui/display/display.h" | 10 #include "ui/display/display.h" |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 display_id); | 74 display_id); |
| 75 } | 75 } |
| 76 | 76 |
| 77 void WindowTreeClientPrivate::CallOnCaptureChanged(Window* new_capture, | 77 void WindowTreeClientPrivate::CallOnCaptureChanged(Window* new_capture, |
| 78 Window* old_capture) { | 78 Window* old_capture) { |
| 79 tree_client_impl_->OnCaptureChanged( | 79 tree_client_impl_->OnCaptureChanged( |
| 80 new_capture ? WindowPortMus::Get(new_capture)->server_id() : 0, | 80 new_capture ? WindowPortMus::Get(new_capture)->server_id() : 0, |
| 81 old_capture ? WindowPortMus::Get(old_capture)->server_id() : 0); | 81 old_capture ? WindowPortMus::Get(old_capture)->server_id() : 0); |
| 82 } | 82 } |
| 83 | 83 |
| 84 void WindowTreeClientPrivate::CallOnConnect() { |
| 85 const ClientSpecificId client_id = 1; |
| 86 tree_client_impl_->OnConnect(client_id); |
| 87 } |
| 88 |
| 84 void WindowTreeClientPrivate::SetTreeAndClientId( | 89 void WindowTreeClientPrivate::SetTreeAndClientId( |
| 85 ui::mojom::WindowTree* window_tree, | 90 ui::mojom::WindowTree* window_tree, |
| 86 ClientSpecificId client_id) { | 91 ClientSpecificId client_id) { |
| 87 tree_client_impl_->WindowTreeConnectionEstablished(window_tree); | 92 tree_client_impl_->WindowTreeConnectionEstablished(window_tree); |
| 88 tree_client_impl_->client_id_ = client_id; | 93 tree_client_impl_->client_id_ = client_id; |
| 89 } | 94 } |
| 90 | 95 |
| 91 bool WindowTreeClientPrivate::HasPointerWatcher() { | 96 bool WindowTreeClientPrivate::HasPointerWatcher() { |
| 92 return tree_client_impl_->has_pointer_watcher_; | 97 return tree_client_impl_->has_pointer_watcher_; |
| 93 } | 98 } |
| 94 | 99 |
| 95 Window* WindowTreeClientPrivate::GetWindowByServerId(Id id) { | 100 Window* WindowTreeClientPrivate::GetWindowByServerId(Id id) { |
| 96 WindowMus* window = tree_client_impl_->GetWindowByServerId(id); | 101 WindowMus* window = tree_client_impl_->GetWindowByServerId(id); |
| 97 return window ? window->GetWindow() : nullptr; | 102 return window ? window->GetWindow() : nullptr; |
| 98 } | 103 } |
| 99 | 104 |
| 100 } // namespace aura | 105 } // namespace aura |
| OLD | NEW |