| 28 | } |
| 29 | |
| 30 | std::unordered_set<std::string> LastSessionBrowserData::convertToIdentifiers(std::unordered_set<NetworkResourceRawTO> const& rawTOs) const |
| 31 | { |
| 32 | std::unordered_set<std::string> result; |
| 33 | for (auto const& rawTO : rawTOs) { |
| 34 | result.insert(convertToIdentifier(rawTO)); |
| 35 | } |
| 36 | return result; |
| 37 | } |
| 38 | |
| 39 | std::string LastSessionBrowserData::convertToIdentifier(NetworkResourceRawTO const& rawTO) const |
| 40 | { |
nothing calls this directly
no outgoing calls
no test coverage detected