| 123 | } |
| 124 | |
| 125 | std::string PlatformSpecificTools::getBackupLogFilePath( |
| 126 | std::string backupID, |
| 127 | std::string logID, |
| 128 | bool isAttachments) { |
| 129 | std::string path; |
| 130 | NativeAndroidAccessProvider::runTask( |
| 131 | [&path, backupID, logID, isAttachments]() { |
| 132 | path = PlatformSpecificToolsJavaClass::getBackupLogFilePath( |
| 133 | backupID, logID, isAttachments); |
| 134 | }); |
| 135 | return path; |
| 136 | } |
| 137 | |
| 138 | std::string |
| 139 | PlatformSpecificTools::getBackupUserKeysFilePath(std::string backupID) { |
nothing calls this directly
no test coverage detected