| 96 | |
| 97 | |
| 98 | NotifierPool *NotifierPool::GetInstance() { |
| 99 | static NotifierPool pool; |
| 100 | return &pool; |
| 101 | } |
| 102 | |
| 103 | unique_ptr<Notifier> NotifierPool::Get() { |
| 104 | lock_guard<mutex> lock_guard(impl_->lock); |
nothing calls this directly
no outgoing calls
no test coverage detected