| 326 | } |
| 327 | |
| 328 | GrPluginInterface* PluginManager::GetRtcLocalPlugin() { |
| 329 | auto plugin = GetPluginById(kNetRtcLocalPluginId); |
| 330 | if (plugin) { |
| 331 | return plugin; |
| 332 | } |
| 333 | return nullptr; |
| 334 | } |
| 335 | |
| 336 | void PluginManager::VisitAllPlugins(const std::function<void(GrPluginInterface *)>&& visitor) { |
| 337 | for (const auto& [k, plugin] : plugins_) { |
nothing calls this directly
no outgoing calls
no test coverage detected