Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(370)

Unified Diff: webkit/appcache/appcache_storage_impl_unittest.cc

Issue 10066044: RefCounted types should not have public destructors, webkit/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation ordering Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/appcache/appcache_storage_impl.cc ('k') | webkit/appcache/appcache_storage_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_storage_impl_unittest.cc
diff --git a/webkit/appcache/appcache_storage_impl_unittest.cc b/webkit/appcache/appcache_storage_impl_unittest.cc
index 5521e61ea1aafae0125c131581b78ec8e754042d..1be4af8c3934af3cff43a67f3799c2c3687da3b4 100644
--- a/webkit/appcache/appcache_storage_impl_unittest.cc
+++ b/webkit/appcache/appcache_storage_impl_unittest.cc
@@ -157,6 +157,9 @@ class AppCacheStorageImplTest : public testing::Test {
}
bool async_;
+
+ protected:
+ virtual ~MockQuotaManager() {}
};
class MockQuotaManagerProxy : public quota::QuotaManagerProxy {
@@ -200,6 +203,9 @@ class AppCacheStorageImplTest : public testing::Test {
GURL last_origin_;
int last_delta_;
scoped_refptr<MockQuotaManager> mock_manager_;
+
+ protected:
+ virtual ~MockQuotaManagerProxy() {}
};
template <class Method>
« no previous file with comments | « webkit/appcache/appcache_storage_impl.cc ('k') | webkit/appcache/appcache_storage_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698