| 2201 | return m_enabled; |
| 2202 | } |
| 2203 | inline void setEnabled(bool enabled) { |
| 2204 | base::threading::ScopedLock scopedLock(lock()); |
| 2205 | m_enabled = enabled; |
| 2206 | } |
| 2207 | protected: |
| 2208 | virtual void handle(const T* handlePtr) = 0; |
| 2209 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected