| 97 | } |
| 98 | |
| 99 | std::filesystem::path CefStrBase::to_path() const |
| 100 | { |
| 101 | #if OS_WIN |
| 102 | return std::filesystem::path(std::wstring(str, length)); |
| 103 | #else |
| 104 | return std::filesystem::path(to_utf8()); |
| 105 | #endif |
| 106 | } |
| 107 | |
| 108 | CefStr::CefStr() : CefStrBase() |
| 109 | { |
no outgoing calls
no test coverage detected