diff options
Diffstat (limited to 'base/ref_counted.cc')
-rw-r--r-- | base/ref_counted.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/base/ref_counted.cc b/base/ref_counted.cc index 597c92c..dfb3698 100644 --- a/base/ref_counted.cc +++ b/base/ref_counted.cc @@ -5,7 +5,6 @@ #include "base/ref_counted.h" #include "base/logging.h" -#include "base/thread_collision_warner.h" namespace base { @@ -24,9 +23,6 @@ RefCountedBase::~RefCountedBase() { } void RefCountedBase::AddRef() { - // TODO(maruel): Add back once it doesn't assert 500 times/sec. - // Current thread books the critical section "AddRelease" without release it. - // DFAKE_SCOPED_LOCK_THREAD_LOCKED(add_release_); #ifndef NDEBUG DCHECK(!in_dtor_); #endif @@ -34,9 +30,6 @@ void RefCountedBase::AddRef() { } bool RefCountedBase::Release() { - // TODO(maruel): Add back once it doesn't assert 500 times/sec. - // Current thread books the critical section "AddRelease" without release it. - // DFAKE_SCOPED_LOCK_THREAD_LOCKED(add_release_); #ifndef NDEBUG DCHECK(!in_dtor_); #endif |