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

Unified Diff: chrome/browser/chromeos/settings/system_settings_provider.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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
Index: chrome/browser/chromeos/settings/system_settings_provider.h
diff --git a/chrome/browser/chromeos/settings/system_settings_provider.h b/chrome/browser/chromeos/settings/system_settings_provider.h
index 8fced45b749232f80402c6672d1660646832a01a..2d319513a292ea75545877a7b435941d6b04e6a2 100644
--- a/chrome/browser/chromeos/settings/system_settings_provider.h
+++ b/chrome/browser/chromeos/settings/system_settings_provider.h
@@ -26,18 +26,18 @@ class SystemSettingsProvider : public CrosSettingsProvider,
virtual ~SystemSettingsProvider();
// CrosSettingsProvider implementation.
- virtual const base::Value* Get(const std::string& path) const OVERRIDE;
+ virtual const base::Value* Get(const std::string& path) const override;
virtual TrustedStatus PrepareTrustedValues(
- const base::Closure& callback) OVERRIDE;
- virtual bool HandlesSetting(const std::string& path) const OVERRIDE;
+ const base::Closure& callback) override;
+ virtual bool HandlesSetting(const std::string& path) const override;
// TimezoneSettings::Observer implementation.
- virtual void TimezoneChanged(const icu::TimeZone& timezone) OVERRIDE;
+ virtual void TimezoneChanged(const icu::TimeZone& timezone) override;
private:
// CrosSettingsProvider implementation.
virtual void DoSet(const std::string& path,
- const base::Value& in_value) OVERRIDE;
+ const base::Value& in_value) override;
scoped_ptr<base::StringValue> timezone_value_;

Powered by Google App Engine
This is Rietveld 408576698