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