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

Unified Diff: webkit/database/database_quota_client_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/database/database_quota_client.cc ('k') | webkit/database/database_tracker_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/database/database_quota_client_unittest.cc
diff --git a/webkit/database/database_quota_client_unittest.cc b/webkit/database/database_quota_client_unittest.cc
index ee62722b0eb2b69a0570e752f7914f333719605b..9411b866195a507ea873ea7a22bc4af4a3264241 100644
--- a/webkit/database/database_quota_client_unittest.cc
+++ b/webkit/database/database_quota_client_unittest.cc
@@ -31,8 +31,6 @@ class MockDatabaseTracker : public DatabaseTracker {
delete_called_count_(0),
async_delete_(false) {}
- virtual ~MockDatabaseTracker() {}
-
virtual bool GetOriginInfo(
const string16& origin_identifier,
OriginInfo* info) OVERRIDE {
@@ -95,6 +93,9 @@ class MockDatabaseTracker : public DatabaseTracker {
bool async_delete() { return async_delete_; }
void set_async_delete(bool async) { async_delete_ = async; }
+ protected:
+ virtual ~MockDatabaseTracker() {}
+
private:
class MockOriginInfo : public OriginInfo {
public:
« no previous file with comments | « webkit/database/database_quota_client.cc ('k') | webkit/database/database_tracker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698