| 401 | } |
| 402 | ~NotificationsHandlerImpl() override { disconnect(); } |
| 403 | void disconnect() override |
| 404 | { |
| 405 | if (m_proxy) { |
| 406 | UnregisterSharedValidationInterface(m_proxy); |
| 407 | m_proxy.reset(); |
| 408 | } |
| 409 | } |
| 410 | std::shared_ptr<NotificationsProxy> m_proxy; |
| 411 | }; |
| 412 |
nothing calls this directly
no test coverage detected