summaryrefslogtreecommitdiffstats
path: root/webkit/dom_storage
diff options
context:
space:
mode:
authorrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-04 08:54:10 +0000
committerrsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-04 08:54:10 +0000
commit7ee2e88cc20da162083e8371d9f73d9ae204fd1f (patch)
tree0762f380421ff6283e81e557fb9ff986d0344640 /webkit/dom_storage
parent24258f8c58c172fe7ce59822752f9757ebb7e53c (diff)
downloadchromium_src-7ee2e88cc20da162083e8371d9f73d9ae204fd1f.zip
chromium_src-7ee2e88cc20da162083e8371d9f73d9ae204fd1f.tar.gz
chromium_src-7ee2e88cc20da162083e8371d9f73d9ae204fd1f.tar.bz2
RefCounted types should not have public destructors, webkit/ edition
BUG=123295 TEST=it compiles Review URL: https://chromiumcodereview.appspot.com/10416004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140265 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/dom_storage')
-rw-r--r--webkit/dom_storage/dom_storage_context.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/webkit/dom_storage/dom_storage_context.h b/webkit/dom_storage/dom_storage_context.h
index ca2b570..630b408 100644
--- a/webkit/dom_storage/dom_storage_context.h
+++ b/webkit/dom_storage/dom_storage_context.h
@@ -85,6 +85,8 @@ class DomStorageContext
virtual void OnDomStorageAreaCleared(
const DomStorageArea* area,
const GURL& page_url) = 0;
+
+ protected:
virtual ~EventObserver() {}
};