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

Unified Diff: chromecast/common/cast_resource_delegate.h

Issue 630663003: replace OVERRIDE and FINAL with override and final in chromecast/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | chromecast/media/cma/base/balanced_media_task_runner_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/common/cast_resource_delegate.h
diff --git a/chromecast/common/cast_resource_delegate.h b/chromecast/common/cast_resource_delegate.h
index b3130bc1668abadc6ff5d264d312f1e6e072cca0..8e248c3453a39084ffbfa567182b214ec15496da 100644
--- a/chromecast/common/cast_resource_delegate.h
+++ b/chromecast/common/cast_resource_delegate.h
@@ -35,24 +35,24 @@ class CastResourceDelegate : public ui::ResourceBundle::Delegate {
// ui:ResourceBundle::Delegate implementation:
virtual base::FilePath GetPathForResourcePack(
const base::FilePath& pack_path,
- ui::ScaleFactor scale_factor) OVERRIDE;
+ ui::ScaleFactor scale_factor) override;
virtual base::FilePath GetPathForLocalePack(
const base::FilePath& pack_path,
- const std::string& locale) OVERRIDE;
- virtual gfx::Image GetImageNamed(int resource_id) OVERRIDE;
+ const std::string& locale) override;
+ virtual gfx::Image GetImageNamed(int resource_id) override;
virtual gfx::Image GetNativeImageNamed(
int resource_id,
- ui::ResourceBundle::ImageRTL rtl) OVERRIDE;
+ ui::ResourceBundle::ImageRTL rtl) override;
virtual base::RefCountedStaticMemory* LoadDataResourceBytes(
int resource_id,
- ui::ScaleFactor scale_factor) OVERRIDE;
+ ui::ScaleFactor scale_factor) override;
virtual bool GetRawDataResource(int resource_id,
ui::ScaleFactor scale_factor,
- base::StringPiece* value) OVERRIDE;
+ base::StringPiece* value) override;
virtual bool GetLocalizedString(int message_id,
- base::string16* value) OVERRIDE;
+ base::string16* value) override;
virtual scoped_ptr<gfx::Font> GetFont(
- ui::ResourceBundle::FontStyle style) OVERRIDE;
+ ui::ResourceBundle::FontStyle style) override;
// Adds/removes/clears extra localized strings.
void AddExtraLocalizedString(int resource_id,
« no previous file with comments | « no previous file | chromecast/media/cma/base/balanced_media_task_runner_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698