| 75 | // Encode URI |
| 76 | |
| 77 | void PercentEncoding::EncodeUriAppend(const StringPiece& input, std::string* output) |
| 78 | { |
| 79 | static const ByteSet unchanged("ABCDEFGHIJKLMNOPQRSTUVWXYZ" |
| 80 | "abcdefghijklmnopqrstuvwxyz" |
| 81 | "0123456789!#$&'()*+,-./:;=?@_~"); |
| 82 | DoEncodeAppend(input, unchanged, output); |
| 83 | } |
| 84 | |
| 85 | void PercentEncoding::EncodeUriTo(const StringPiece& input, std::string* output) |
| 86 | { |
nothing calls this directly
no test coverage detected