| 148 | } |
| 149 | |
| 150 | bool ClientPluginInterface::OnDestroy() { |
| 151 | plugin_context_->OnDestroy(); |
| 152 | destroyed_ = true; |
| 153 | return true; |
| 154 | } |
| 155 | |
| 156 | void ClientPluginInterface::PostWorkTask(std::function<void()>&& task) { |
| 157 | if (plugin_context_ && !stopped_) { |
nothing calls this directly
no outgoing calls
no test coverage detected