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

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

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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_factory.h
diff --git a/content/browser/geolocation/arbitrator_dependency_factory.h b/content/browser/geolocation/arbitrator_dependency_factory.h
index 484c673d655164bc47d0209b0e904d425e430620..2aaf4aa3f3cf70108e518538dcabec83962ae3f6 100644
--- a/content/browser/geolocation/arbitrator_dependency_factory.h
+++ b/content/browser/geolocation/arbitrator_dependency_factory.h
@@ -50,14 +50,14 @@ class CONTENT_EXPORT DefaultGeolocationArbitratorDependencyFactory
: public GeolocationArbitratorDependencyFactory {
public:
// GeolocationArbitratorDependencyFactory
- virtual GetTimeNow GetTimeFunction();
- virtual AccessTokenStore* NewAccessTokenStore();
+ virtual GetTimeNow GetTimeFunction() OVERRIDE;
+ virtual AccessTokenStore* NewAccessTokenStore() OVERRIDE;
virtual LocationProviderBase* NewNetworkLocationProvider(
AccessTokenStore* access_token_store,
net::URLRequestContextGetter* context,
const GURL& url,
- const string16& access_token);
- virtual LocationProviderBase* NewSystemLocationProvider();
+ const string16& access_token) OVERRIDE;
+ virtual LocationProviderBase* NewSystemLocationProvider() OVERRIDE;
};
#endif // CONTENT_BROWSER_GEOLOCATION_ARBITRATOR_DEPENDENCY_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698