| 178 | } |
| 179 | |
| 180 | std::string Platform::TmpPathForFile() const |
| 181 | { |
| 182 | size_t constexpr kNameLen = 32; |
| 183 | return base::JoinPath(TmpDir(), RandomString(kNameLen)); |
| 184 | } |
| 185 | |
| 186 | std::string Platform::TmpPathForFile(std::string const & prefix, std::string const & suffix) const |
| 187 | { |
no test coverage detected