| 1743 | } |
| 1744 | |
| 1745 | static int32_t FindBrowserService(dmArray<BrowserService>& services, const char* full_name) |
| 1746 | { |
| 1747 | for (uint32_t i = 0; i < services.Size(); ++i) |
| 1748 | { |
| 1749 | if (NameEquals(services[i].m_FullServiceName, full_name)) |
| 1750 | return (int32_t) i; |
| 1751 | } |
| 1752 | return -1; |
| 1753 | } |
| 1754 | |
| 1755 | static void EmitBrowserEvent(Browser* browser, const BrowserService& service, EventType event_type) |
| 1756 | { |
no test coverage detected