| 225 | ScreenshotManager *ScreenshotManager::mInstance = nullptr; |
| 226 | |
| 227 | ScreenshotManager *ScreenshotManager::instance() |
| 228 | { |
| 229 | if (!mInstance) { |
| 230 | mInstance = new ScreenshotManager(); |
| 231 | } |
| 232 | |
| 233 | return mInstance; |
| 234 | } |
nothing calls this directly
no outgoing calls
no test coverage detected