summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/geolocation/access_token_store.h2
-rw-r--r--chrome/browser/geolocation/fake_access_token_store.h2
-rw-r--r--chrome/browser/geolocation/location_arbitrator.cc2
-rw-r--r--chrome/browser/geolocation/wifi_data_provider_win.cc4
4 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/geolocation/access_token_store.h b/chrome/browser/geolocation/access_token_store.h
index 4a081d8..98a51fa 100644
--- a/chrome/browser/geolocation/access_token_store.h
+++ b/chrome/browser/geolocation/access_token_store.h
@@ -71,7 +71,7 @@ class AccessTokenStoreFactory
protected:
friend class base::RefCountedThreadSafe<AccessTokenStoreFactory>;
- ~AccessTokenStoreFactory();
+ virtual ~AccessTokenStoreFactory();
};
// Creates a new access token store backed by the global chome prefs.
diff --git a/chrome/browser/geolocation/fake_access_token_store.h b/chrome/browser/geolocation/fake_access_token_store.h
index 767142e..7e0f875 100644
--- a/chrome/browser/geolocation/fake_access_token_store.h
+++ b/chrome/browser/geolocation/fake_access_token_store.h
@@ -21,7 +21,7 @@ class FakeAccessTokenStore : public AccessTokenStore {
string16 access_token_set_;
private:
- ~FakeAccessTokenStore() {}
+ virtual ~FakeAccessTokenStore() {}
};
class FakeAccessTokenStoreFactory : public AccessTokenStoreFactory {
diff --git a/chrome/browser/geolocation/location_arbitrator.cc b/chrome/browser/geolocation/location_arbitrator.cc
index 04fba9d..0b5fc0af 100644
--- a/chrome/browser/geolocation/location_arbitrator.cc
+++ b/chrome/browser/geolocation/location_arbitrator.cc
@@ -29,7 +29,7 @@ class GeolocationArbitratorImpl
public:
GeolocationArbitratorImpl(AccessTokenStoreFactory* access_token_store_factory,
URLRequestContextGetter* context_getter);
- ~GeolocationArbitratorImpl();
+ virtual ~GeolocationArbitratorImpl();
// GeolocationArbitrator
virtual void AddObserver(GeolocationArbitrator::Delegate* delegate,
diff --git a/chrome/browser/geolocation/wifi_data_provider_win.cc b/chrome/browser/geolocation/wifi_data_provider_win.cc
index 3453f05..971d678 100644
--- a/chrome/browser/geolocation/wifi_data_provider_win.cc
+++ b/chrome/browser/geolocation/wifi_data_provider_win.cc
@@ -81,7 +81,7 @@ typedef DWORD (WINAPI *WlanCloseHandleFunction)(HANDLE hClientHandle,
// Local classes and functions
class WindowsWlanApi : public WifiDataProviderCommon::WlanApiInterface {
public:
- ~WindowsWlanApi();
+ virtual ~WindowsWlanApi();
// Factory function. Will return NULL if this API is unavailable.
static WindowsWlanApi* Create();
@@ -111,7 +111,7 @@ class WindowsWlanApi : public WifiDataProviderCommon::WlanApiInterface {
class WindowsNdisApi : public WifiDataProviderCommon::WlanApiInterface {
public:
- ~WindowsNdisApi();
+ virtual ~WindowsNdisApi();
static WindowsNdisApi* Create();
// WlanApiInterface