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

Unified Diff: content/browser/geolocation/geolocation_provider_unittest.cc

Issue 10388186: RefCounted types should not have public destructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | « chrome/renderer/spellchecker/spellcheck.cc ('k') | content/browser/tcmalloc_internals_request_job.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/geolocation/geolocation_provider_unittest.cc
diff --git a/content/browser/geolocation/geolocation_provider_unittest.cc b/content/browser/geolocation/geolocation_provider_unittest.cc
index ce9dc1a60932ff83d70761e80c9d29b43496996d..3b1ca07cdfdd5e995b29a75868446c62acf56b37 100644
--- a/content/browser/geolocation/geolocation_provider_unittest.cc
+++ b/content/browser/geolocation/geolocation_provider_unittest.cc
@@ -68,6 +68,9 @@ class TestingAccessTokenStore : public content::AccessTokenStore {
virtual void SaveAccessToken(const GURL& server_url,
const string16& access_token) OVERRIDE {}
+ protected:
+ virtual ~TestingAccessTokenStore() {}
+
private:
base::WaitableEvent* event_;
};
@@ -93,6 +96,9 @@ class TestingDependencyFactory
return NULL;
}
+ protected:
+ virtual ~TestingDependencyFactory() {}
+
private:
base::WaitableEvent* event_;
};
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck.cc ('k') | content/browser/tcmalloc_internals_request_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698