| 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 "services/ui/ws/window_server_test_impl.h" | 5 #include "services/ui/ws/window_server_test_impl.h" |
| 6 | 6 |
| 7 #include "services/ui/public/interfaces/window_tree.mojom.h" | 7 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 8 #include "services/ui/ws/server_window.h" | 8 #include "services/ui/ws/server_window.h" |
| 9 #include "services/ui/ws/server_window_compositor_frame_sink_manager.h" | 9 #include "services/ui/ws/server_window_compositor_frame_sink_manager.h" |
| 10 #include "services/ui/ws/window_server.h" | 10 #include "services/ui/ws/window_server.h" |
| 11 #include "services/ui/ws/window_tree.h" | 11 #include "services/ui/ws/window_tree.h" |
| 12 | 12 |
| 13 namespace ui { | 13 namespace ui { |
| 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 ServerWindowCompositorFrameSinkManager* manager = | 19 const ServerWindowCompositorFrameSinkManager* manager = |
| 20 window->compositor_frame_sink_manager(); | 20 window->compositor_frame_sink_manager(); |
| 21 return manager && | 21 return manager && !manager->GetLatestFrameSize().IsEmpty(); |
| 22 !manager->GetLatestFrameSize(mojom::CompositorFrameSinkType::DEFAULT) | |
| 23 .IsEmpty(); | |
| 24 } | 22 } |
| 25 | 23 |
| 26 } // namespace | 24 } // namespace |
| 27 | 25 |
| 28 WindowServerTestImpl::WindowServerTestImpl(WindowServer* window_server) | 26 WindowServerTestImpl::WindowServerTestImpl(WindowServer* window_server) |
| 29 : window_server_(window_server) {} | 27 : window_server_(window_server) {} |
| 30 | 28 |
| 31 WindowServerTestImpl::~WindowServerTestImpl() {} | 29 WindowServerTestImpl::~WindowServerTestImpl() {} |
| 32 | 30 |
| 33 void WindowServerTestImpl::OnWindowPaint( | 31 void WindowServerTestImpl::OnWindowPaint( |
| (...skipping 22 matching lines...) Expand all Loading... |
| 56 } | 54 } |
| 57 } | 55 } |
| 58 | 56 |
| 59 window_server_->SetPaintCallback( | 57 window_server_->SetPaintCallback( |
| 60 base::Bind(&WindowServerTestImpl::OnWindowPaint, base::Unretained(this), | 58 base::Bind(&WindowServerTestImpl::OnWindowPaint, base::Unretained(this), |
| 61 client_name, std::move(callback))); | 59 client_name, std::move(callback))); |
| 62 } | 60 } |
| 63 | 61 |
| 64 } // namespace ws | 62 } // namespace ws |
| 65 } // namespace ui | 63 } // namespace ui |
| OLD | NEW |