| 141 | } |
| 142 | |
| 143 | static inline int min_(int a, int b) |
| 144 | { |
| 145 | return a < b ? a : b; |
| 146 | } |
| 147 | }; |
| 148 | |
| 149 | struct RiotClientSchemeHandlerFactory : CefRefCount<cef_scheme_handler_factory_t> |
nothing calls this directly
no outgoing calls
no test coverage detected