Gets the current thread reference, which can be used to check if we're on the right thread quickly.
| 94 | // Gets the current thread reference, which can be used to check if |
| 95 | // we're on the right thread quickly. |
| 96 | inline PlatformThreadRef CurrentRef() { |
| 97 | return PlatformThreadRef(cef_get_current_platform_thread_handle()); |
| 98 | } |
| 99 | |
| 100 | } // namespace PlatformThread |
| 101 |
nothing calls this directly
no test coverage detected