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

Unified Diff: chrome/browser/themes/theme_service.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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/themes/browser_theme_pack.cc ('k') | chrome/browser/themes/theme_service_aurax11.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/themes/theme_service.h
diff --git a/chrome/browser/themes/theme_service.h b/chrome/browser/themes/theme_service.h
index 8a86d30bb86b33dfe2f2caf00afbc6931573eca3..2bfed249429a4fa7d9908bab897d4ccf47c2e790 100644
--- a/chrome/browser/themes/theme_service.h
+++ b/chrome/browser/themes/theme_service.h
@@ -76,27 +76,27 @@ class ThemeService : public base::NonThreadSafe,
virtual gfx::Image GetImageNamed(int id) const;
// Overridden from ui::ThemeProvider:
- virtual bool UsingSystemTheme() const OVERRIDE;
- virtual gfx::ImageSkia* GetImageSkiaNamed(int id) const OVERRIDE;
- virtual SkColor GetColor(int id) const OVERRIDE;
- virtual int GetDisplayProperty(int id) const OVERRIDE;
- virtual bool ShouldUseNativeFrame() const OVERRIDE;
- virtual bool HasCustomImage(int id) const OVERRIDE;
+ virtual bool UsingSystemTheme() const override;
+ virtual gfx::ImageSkia* GetImageSkiaNamed(int id) const override;
+ virtual SkColor GetColor(int id) const override;
+ virtual int GetDisplayProperty(int id) const override;
+ virtual bool ShouldUseNativeFrame() const override;
+ virtual bool HasCustomImage(int id) const override;
virtual base::RefCountedMemory* GetRawData(
int id,
- ui::ScaleFactor scale_factor) const OVERRIDE;
+ ui::ScaleFactor scale_factor) const override;
#if defined(OS_MACOSX)
- virtual NSImage* GetNSImageNamed(int id) const OVERRIDE;
- virtual NSColor* GetNSImageColorNamed(int id) const OVERRIDE;
- virtual NSColor* GetNSColor(int id) const OVERRIDE;
- virtual NSColor* GetNSColorTint(int id) const OVERRIDE;
- virtual NSGradient* GetNSGradient(int id) const OVERRIDE;
+ virtual NSImage* GetNSImageNamed(int id) const override;
+ virtual NSColor* GetNSImageColorNamed(int id) const override;
+ virtual NSColor* GetNSColor(int id) const override;
+ virtual NSColor* GetNSColorTint(int id) const override;
+ virtual NSGradient* GetNSGradient(int id) const override;
#endif
// Overridden from content::NotificationObserver:
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// Set the current theme to the theme defined in |extension|.
// |extension| must already be added to this profile's
« no previous file with comments | « chrome/browser/themes/browser_theme_pack.cc ('k') | chrome/browser/themes/theme_service_aurax11.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698