| Index: base/memory/ref_counted.h
|
| diff --git a/base/memory/ref_counted.h b/base/memory/ref_counted.h
|
| index 255ede55e79c3a87a17e11bdd338ae5c03fe8be7..35f515d23b8aed446d25882d77dc12b3858967f5 100644
|
| --- a/base/memory/ref_counted.h
|
| +++ b/base/memory/ref_counted.h
|
| @@ -17,8 +17,6 @@ namespace subtle {
|
|
|
| class BASE_EXPORT RefCountedBase {
|
| public:
|
| - static bool ImplementsThreadSafeReferenceCounting() { return false; }
|
| -
|
| bool HasOneRef() const { return ref_count_ == 1; }
|
|
|
| protected:
|
| @@ -43,8 +41,6 @@ class BASE_EXPORT RefCountedBase {
|
|
|
| class BASE_EXPORT RefCountedThreadSafeBase {
|
| public:
|
| - static bool ImplementsThreadSafeReferenceCounting() { return true; }
|
| -
|
| bool HasOneRef() const;
|
|
|
| protected:
|
|
|