| Index: base/memory/ref_counted_memory.h
|
| diff --git a/base/memory/ref_counted_memory.h b/base/memory/ref_counted_memory.h
|
| index 9edcd6fdc94d7f358596dcc2a39153a38d7e0b0f..ba27c4dd6ce2dca76773f0bcab65ed50a12debb9 100644
|
| --- a/base/memory/ref_counted_memory.h
|
| +++ b/base/memory/ref_counted_memory.h
|
| @@ -27,6 +27,9 @@ class BASE_EXPORT RefCountedMemory
|
| // Size of the memory pointed to.
|
| virtual size_t size() const = 0;
|
|
|
| + // Returns true if |other| is byte for byte equal.
|
| + bool Equals(base::RefCountedMemory* other) const;
|
| +
|
| protected:
|
| friend class base::RefCountedThreadSafe<RefCountedMemory>;
|
| RefCountedMemory();
|
|
|