| 82 | } |
| 83 | |
| 84 | std::string CefStrBase::to_utf8() const |
| 85 | { |
| 86 | cef_string_utf8_t out{}; |
| 87 | cef_string_to_utf8(str, length, &out); |
| 88 | |
| 89 | std::string ret(out.str, out.length); |
| 90 | cef_string_utf8_clear(&out); |
| 91 | return ret; |
| 92 | } |
| 93 | |
| 94 | std::u16string CefStrBase::to_utf16() const |
| 95 | { |
no outgoing calls
no test coverage detected