| 32 | NativeLoadingText native_loading_text; |
| 33 | |
| 34 | void AddLoadingText(const std::string& text) { |
| 35 | native_loading_text.AddLine(text.c_str()); |
| 36 | LOGI << text.c_str() << std::endl; |
| 37 | } |
| 38 | |
| 39 | void NativeLoadingText::AddLine(const char* msg) { |
| 40 | buf_mutex.lock(); |
no test coverage detected