| 66 | pOverlay->InitiateClose(); |
| 67 | } |
| 68 | void OverlayContainer::RunTick() |
| 69 | { |
| 70 | HandleProcessSpawnEvents_(); |
| 71 | try { |
| 72 | pOverlay->RunTick(); |
| 73 | } |
| 74 | catch (const TargetLostException&) { |
| 75 | // if lost target is a child process, revert to root |
| 76 | if (curPid != rootPid) { |
| 77 | curPid = rootPid; |
| 78 | pOverlay = pOverlay->RetargetPidClone(ancestorMap[curPid]); |
| 79 | } |
| 80 | else throw; |
| 81 | } |
| 82 | } |
| 83 | void OverlayContainer::SetCaptureState(bool active) |
| 84 | { |
| 85 | pOverlay->SetCaptureState(active); |
nothing calls this directly
no test coverage detected