| 210 | |
| 211 | template<typename T> |
| 212 | inline std::string AnyToString(const T& value) |
| 213 | { |
| 214 | std::ostringstream oss; |
| 215 | oss << value; |
| 216 | return oss.str(); |
| 217 | } |
| 218 | |
| 219 | CefV8ValueList CefListValueToCefV8ValueList( |
| 220 | CefRefPtr<CefListValue> listValue) { |
no outgoing calls
no test coverage detected