| 11 | |
| 12 | template<typename T> |
| 13 | inline std::string AnyToString(const T& value) |
| 14 | { |
| 15 | std::ostringstream oss; |
| 16 | oss << value; |
| 17 | return oss.str(); |
| 18 | } |
| 19 | |
| 20 | typedef std::map<int, |
| 21 | std::pair<CefRefPtr<CefFrame>, CefRefPtr<CefV8Value> > > |
no outgoing calls
no test coverage detected