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

Unified Diff: chrome/browser/android/logo_service.h

Issue 884213005: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 10 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/browser/android/logo_bridge.cc ('k') | chrome/browser/android/logo_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/android/logo_service.h
diff --git a/chrome/browser/android/logo_service.h b/chrome/browser/android/logo_service.h
index fe4075b07f9ad848361d450568344a1854c8be39..441c6e21b188bd670d5883c4d18968f7abc0c657 100644
--- a/chrome/browser/android/logo_service.h
+++ b/chrome/browser/android/logo_service.h
@@ -22,7 +22,7 @@ class Profile;
class LogoService : public KeyedService {
public:
explicit LogoService(Profile* profile);
- virtual ~LogoService();
+ ~LogoService() override;
// Gets the logo for the default search provider and notifies |observer|
// with the results.
@@ -46,10 +46,10 @@ class LogoServiceFactory : public BrowserContextKeyedServiceFactory {
friend struct DefaultSingletonTraits<LogoServiceFactory>;
LogoServiceFactory();
- virtual ~LogoServiceFactory();
+ ~LogoServiceFactory() override;
// BrowserContextKeyedServiceFactory:
- virtual KeyedService* BuildServiceInstanceFor(
+ KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const override;
};
« no previous file with comments | « chrome/browser/android/logo_bridge.cc ('k') | chrome/browser/android/logo_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698