| 202 | } |
| 203 | |
| 204 | void ManagedClipboardPort::SetEventHandler(std::function<void(const ClipboardEvent&)> handler) { |
| 205 | std::lock_guard<std::mutex> lock(mutex_); |
| 206 | event_handler_ = std::move(handler); |
| 207 | } |
| 208 | |
| 209 | // ── ManagedAudioPort ────────────────────────────────────────────────── |
| 210 |
no outgoing calls
no test coverage detected