diff options
author | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-04 08:54:10 +0000 |
---|---|---|
committer | rsleevi@chromium.org <rsleevi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-04 08:54:10 +0000 |
commit | 7ee2e88cc20da162083e8371d9f73d9ae204fd1f (patch) | |
tree | 0762f380421ff6283e81e557fb9ff986d0344640 /webkit/dom_storage | |
parent | 24258f8c58c172fe7ce59822752f9757ebb7e53c (diff) | |
download | chromium_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.h | 2 |
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() {} }; |