| 231 | } |
| 232 | |
| 233 | void BackgroundScriptRunner::Run(std::function<void (ProgressSink*)> task) |
| 234 | { |
| 235 | impl->Run([&](agi::ProgressSink *ps) { |
| 236 | ProgressSink aps(ps, this); |
| 237 | task(&aps); |
| 238 | }); |
| 239 | } |
| 240 | |
| 241 | wxWindow *BackgroundScriptRunner::GetParentWindow() const |
| 242 | { |
no outgoing calls
no test coverage detected