HomeSort by relevance Sort by last modified time
    Searched refs:RefCountedThreadSafeBase (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/
ref_counted.cc 54 RefCountedThreadSafeBase::RefCountedThreadSafeBase() : ref_count_(0) {
60 RefCountedThreadSafeBase::~RefCountedThreadSafeBase() {
67 void RefCountedThreadSafeBase::AddRef() {
74 bool RefCountedThreadSafeBase::Release() {
88 bool RefCountedThreadSafeBase::HasOneRef() const {
90 &const_cast<RefCountedThreadSafeBase*>(this)->ref_count_);
ref_counted.h 41 class RefCountedThreadSafeBase {
48 RefCountedThreadSafeBase();
49 ~RefCountedThreadSafeBase();
62 DISALLOW_COPY_AND_ASSIGN(RefCountedThreadSafeBase);
129 class RefCountedThreadSafe : public subtle::RefCountedThreadSafeBase {
135 subtle::RefCountedThreadSafeBase::AddRef();
139 if (subtle::RefCountedThreadSafeBase::Release()) {

Completed in 800 milliseconds