Home
last modified time | relevance | path

Searched refs:PlatformThreadRef (Results 1 – 5 of 5) sorted by relevance

/third_party/cef/include/base/
Dcef_platform_thread.h63 class PlatformThreadRef {
67 PlatformThreadRef() : id_(0) {} in PlatformThreadRef() function
69 explicit PlatformThreadRef(RefType id) : id_(id) {} in PlatformThreadRef() function
71 bool operator==(PlatformThreadRef other) const { return id_ == other.id_; }
91 inline PlatformThreadRef CurrentRef() { in CurrentRef()
92 return PlatformThreadRef(cef_get_current_platform_thread_handle()); in CurrentRef()
Dcef_lock.h112 base::PlatformThreadRef owning_thread_ref_;
/third_party/cef/include/base/internal/
Dcef_thread_checker_impl.h66 mutable PlatformThreadRef valid_thread_id_;
/third_party/cef/libcef_dll/base/
Dcef_lock.cc29 owning_thread_ref_ = PlatformThreadRef(); in CheckHeldAndUnmark()
Dcef_thread_checker_impl.cc24 valid_thread_id_ = PlatformThreadRef(); in DetachFromThread()