| 127 | } |
| 128 | |
| 129 | std::string GetQuotedJSONString(const StringPiece& str) { |
| 130 | std::string dest; |
| 131 | bool ok = EscapeJSONStringImpl(str, true, &dest); |
| 132 | DCHECK(ok); |
| 133 | return dest; |
| 134 | } |
| 135 | |
| 136 | std::string GetQuotedJSONString(const StringPiece16& str) { |
| 137 | std::string dest; |
nothing calls this directly
no test coverage detected