| 542 | |
| 543 | |
| 544 | bool BrowserFactory::IsBrowserProcessInitialized(DWORD process_id) { |
| 545 | ProcessWindowInfo info; |
| 546 | info.dwProcessId = process_id; |
| 547 | info.hwndBrowser = NULL; |
| 548 | info.pBrowser = NULL; |
| 549 | |
| 550 | ::EnumWindows(&BrowserFactory::FindBrowserWindow, |
| 551 | reinterpret_cast<LPARAM>(&info)); |
| 552 | return info.hwndBrowser != NULL; |
| 553 | } |
| 554 | |
| 555 | bool BrowserFactory::AttachToBrowserUsingActiveAccessibility |
| 556 | (ProcessWindowInfo* process_window_info, |
no outgoing calls
no test coverage detected