summaryrefslogtreecommitdiffstats
path: root/base/memory/ref_counted_memory.h
diff options
context:
space:
mode:
authorpkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-14 18:59:55 +0000
committerpkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-14 18:59:55 +0000
commit5565316246b58c1168fb10e9439fc903ebb8faa6 (patch)
tree7f497b09f9fa21b3ad9ff10f5f3091d29d159c11 /base/memory/ref_counted_memory.h
parent1dcf97bb29b98046aa9856545ae12755ee91c6da (diff)
downloadchromium_src-5565316246b58c1168fb10e9439fc903ebb8faa6.zip
chromium_src-5565316246b58c1168fb10e9439fc903ebb8faa6.tar.gz
chromium_src-5565316246b58c1168fb10e9439fc903ebb8faa6.tar.bz2
Avoid sending notifications when the bitmap data in the history backend is replaced with bitmap data which is byte for byte equal.
Bug=168223 Test=HistoryBackendTest.* Manual: see comment #7 in bug Review URL: https://chromiumcodereview.appspot.com/11830007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176691 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/memory/ref_counted_memory.h')
-rw-r--r--base/memory/ref_counted_memory.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/base/memory/ref_counted_memory.h b/base/memory/ref_counted_memory.h
index 9edcd6f..b99871b 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(const scoped_refptr<RefCountedMemory>& other) const;
+
protected:
friend class base::RefCountedThreadSafe<RefCountedMemory>;
RefCountedMemory();