| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "components/mus/ws/test_server_window_delegate.h" | 5 #include "components/mus/ws/test_server_window_delegate.h" |
| 6 #include "components/mus/ws/server_window.h" | 6 #include "components/mus/ws/server_window.h" |
| 7 | 7 |
| 8 namespace mus { | 8 namespace mus { |
| 9 | 9 |
| 10 namespace ws { | 10 namespace ws { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 const ServerWindow* window) {} | 21 const ServerWindow* window) {} |
| 22 | 22 |
| 23 const ServerWindow* TestServerWindowDelegate::GetRootWindow( | 23 const ServerWindow* TestServerWindowDelegate::GetRootWindow( |
| 24 const ServerWindow* window) const { | 24 const ServerWindow* window) const { |
| 25 return root_window_; | 25 return root_window_; |
| 26 } | 26 } |
| 27 | 27 |
| 28 void TestServerWindowDelegate::ScheduleSurfaceDestruction( | 28 void TestServerWindowDelegate::ScheduleSurfaceDestruction( |
| 29 ServerWindow* window) {} | 29 ServerWindow* window) {} |
| 30 | 30 |
| 31 ServerWindow* TestServerWindowDelegate::FindWindowForSurface( |
| 32 const ServerWindow* ancestor, |
| 33 mojom::SurfaceType surface_type, |
| 34 const ClientWindowId& client_window_id) { |
| 35 return nullptr; |
| 36 } |
| 37 |
| 31 } // namespace ws | 38 } // namespace ws |
| 32 | 39 |
| 33 } // namespace mus | 40 } // namespace mus |
| OLD | NEW |