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

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

Issue 10068037: RefCounted types should not have public destructors, content/browser part 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: MSVC fixes 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
Index: content/browser/geolocation/wifi_data_provider_common_unittest.cc
diff --git a/content/browser/geolocation/wifi_data_provider_common_unittest.cc b/content/browser/geolocation/wifi_data_provider_common_unittest.cc
index dbfa0110395371ae89da5abd65d279856f677815..05c89c7efaf67e19441c1c3dabecb816d6cf57b4 100644
--- a/content/browser/geolocation/wifi_data_provider_common_unittest.cc
+++ b/content/browser/geolocation/wifi_data_provider_common_unittest.cc
@@ -97,6 +97,9 @@ class WifiDataProviderCommonWithMock : public WifiDataProviderCommon {
scoped_ptr<MockWlanApi> new_wlan_api_;
scoped_ptr<MockPollingPolicy> new_polling_policy_;
+ private:
+ virtual ~WifiDataProviderCommonWithMock() {}
+
DISALLOW_COPY_AND_ASSIGN(WifiDataProviderCommonWithMock);
};

Powered by Google App Engine
This is Rietveld 408576698