| 34 | // Encode |
| 35 | |
| 36 | void URI::Encode(const StringPiece& src, std::string* dest) |
| 37 | { |
| 38 | PercentEncoding::EncodeUriTo(src, dest); |
| 39 | } |
| 40 | |
| 41 | std::string URI::Encode(const StringPiece& src) |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected