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

Unified Diff: content/browser/geolocation/arbitrator_dependency_factories_for_test.h

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/arbitrator_dependency_factories_for_test.h
diff --git a/content/browser/geolocation/arbitrator_dependency_factories_for_test.h b/content/browser/geolocation/arbitrator_dependency_factories_for_test.h
index 8e0e18fd74752c9eddfca19f2b73e4b880a3b1ae..55e412c2cb7b302682acb50fcd6132528cf198c3 100644
--- a/content/browser/geolocation/arbitrator_dependency_factories_for_test.h
+++ b/content/browser/geolocation/arbitrator_dependency_factories_for_test.h
@@ -15,7 +15,6 @@ class GeolocationArbitratorDependencyFactoryWithLocationProvider
GeolocationArbitratorDependencyFactoryWithLocationProvider(
LocationProviderFactoryFunction factory_function);
- virtual ~GeolocationArbitratorDependencyFactoryWithLocationProvider();
virtual LocationProviderBase* NewNetworkLocationProvider(
content::AccessTokenStore* access_token_store,
@@ -26,6 +25,8 @@ class GeolocationArbitratorDependencyFactoryWithLocationProvider
virtual LocationProviderBase* NewSystemLocationProvider() OVERRIDE;
protected:
+ virtual ~GeolocationArbitratorDependencyFactoryWithLocationProvider();
+
LocationProviderFactoryFunction factory_function_;
};

Powered by Google App Engine
This is Rietveld 408576698