| 163 | } |
| 164 | |
| 165 | void ManagedDisplayPort::SetFrameHandler( |
| 166 | std::function<void(DisplayFrame)> handler) { |
| 167 | std::lock_guard<std::mutex> lock(mutex_); |
| 168 | frame_handler_ = std::move(handler); |
| 169 | } |
| 170 | |
| 171 | void ManagedDisplayPort::SetCursorHandler( |
| 172 | std::function<void(const CursorInfo&)> handler) { |
no outgoing calls
no test coverage detected