| 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 "components/mus/ws/window_server_test_impl.h" | 5 #include "services/ui/ws/window_server_test_impl.h" |
| 6 | 6 |
| 7 #include "components/mus/public/interfaces/window_tree.mojom.h" | 7 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 8 #include "components/mus/ws/server_window.h" | 8 #include "services/ui/ws/server_window.h" |
| 9 #include "components/mus/ws/server_window_surface_manager.h" | 9 #include "services/ui/ws/server_window_surface_manager.h" |
| 10 #include "components/mus/ws/window_server.h" | 10 #include "services/ui/ws/window_server.h" |
| 11 #include "components/mus/ws/window_tree.h" | 11 #include "services/ui/ws/window_tree.h" |
| 12 | 12 |
| 13 namespace mus { | 13 namespace mus { |
| 14 namespace ws { | 14 namespace ws { |
| 15 | 15 |
| 16 namespace { | 16 namespace { |
| 17 | 17 |
| 18 bool WindowHasValidFrame(const ServerWindow* window) { | 18 bool WindowHasValidFrame(const ServerWindow* window) { |
| 19 const ServerWindowSurfaceManager* manager = window->surface_manager(); | 19 const ServerWindowSurfaceManager* manager = window->surface_manager(); |
| 20 return manager && | 20 return manager && |
| 21 !manager->GetDefaultSurface()->last_submitted_frame_size().IsEmpty(); | 21 !manager->GetDefaultSurface()->last_submitted_frame_size().IsEmpty(); |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 } | 57 } |
| 58 } | 58 } |
| 59 | 59 |
| 60 window_server_->SetPaintCallback( | 60 window_server_->SetPaintCallback( |
| 61 base::Bind(&WindowServerTestImpl::OnWindowPaint, base::Unretained(this), | 61 base::Bind(&WindowServerTestImpl::OnWindowPaint, base::Unretained(this), |
| 62 name, std::move(callback))); | 62 name, std::move(callback))); |
| 63 } | 63 } |
| 64 | 64 |
| 65 } // namespace ws | 65 } // namespace ws |
| 66 } // namespace mus | 66 } // namespace mus |
| OLD | NEW |