Returns true if the reference count is 1.
| 101 | // Returns true if the reference count is 1. |
| 102 | /// |
| 103 | bool HasOneRef() const { return base::AtomicRefCountIsOne(&ref_count_); } |
| 104 | |
| 105 | private: |
| 106 | mutable base::AtomicRefCount ref_count_; |
nothing calls this directly
no test coverage detected