| 257 | } |
| 258 | |
| 259 | string CreateURI(StringPiece scheme, StringPiece host, StringPiece path) { |
| 260 | if (scheme.empty()) { |
| 261 | return string(path); |
| 262 | } |
| 263 | return strings::StrCat(scheme, "://", host, path); |
| 264 | } |
| 265 | |
| 266 | // Returns a unique number every time it is called. |
| 267 | int64 UniqueId() { |
no test coverage detected