| 250 | } |
| 251 | |
| 252 | void DamageManager::addDamageRequest(RemoteDamageRequest remoteDamageRequest) { |
| 253 | if (remoteDamageRequest.destinationConnection() == m_connectionId) |
| 254 | pushRemoteDamageRequest(std::move(remoteDamageRequest)); |
| 255 | else |
| 256 | m_pendingRemoteDamageRequests.append(std::move(remoteDamageRequest)); |
| 257 | } |
| 258 | |
| 259 | void DamageManager::addDamageNotification(RemoteDamageNotification remoteDamageNotification) { |
| 260 | pushRemoteDamageNotification(remoteDamageNotification); |
nothing calls this directly
no test coverage detected