| 49 | } |
| 50 | |
| 51 | std::string GoogleDriveProvider::BuildChildCacheKey(const std::string& parentId, |
| 52 | const std::string& name) const { |
| 53 | if (parentId.empty() || name.empty()) return {}; |
| 54 | return parentId + "/" + name; |
| 55 | } |
| 56 | |
| 57 | void GoogleDriveProvider::CacheFolderChild(const std::string& parentId, |
| 58 | const std::string& name, |
nothing calls this directly
no outgoing calls
no test coverage detected