| 115 | } // namespace |
| 116 | |
| 117 | bool EscapeJSONString(const StringPiece& str, |
| 118 | bool put_in_quotes, |
| 119 | std::string* dest) { |
| 120 | return EscapeJSONStringImpl(str, put_in_quotes, dest); |
| 121 | } |
| 122 | |
| 123 | bool EscapeJSONString(const StringPiece16& str, |
| 124 | bool put_in_quotes, |
no test coverage detected