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

Unified Diff: chrome/browser/chromeos/settings/device_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/device_settings_provider.h
diff --git a/chrome/browser/chromeos/settings/device_settings_provider.h b/chrome/browser/chromeos/settings/device_settings_provider.h
index b23e8733ef532f2a9c59afeb7027cb331242a62d..c8b952e401211d14fc452bba65a7d5aa3337ff2b 100644
--- a/chrome/browser/chromeos/settings/device_settings_provider.h
+++ b/chrome/browser/chromeos/settings/device_settings_provider.h
@@ -45,19 +45,19 @@ class DeviceSettingsProvider : public CrosSettingsProvider,
static bool IsDeviceSetting(const std::string& name);
// 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;
private:
// CrosSettingsProvider implementation:
virtual void DoSet(const std::string& path,
- const base::Value& value) OVERRIDE;
+ const base::Value& value) override;
// DeviceSettingsService::Observer implementation:
- virtual void OwnershipStatusChanged() OVERRIDE;
- virtual void DeviceSettingsUpdated() OVERRIDE;
+ virtual void OwnershipStatusChanged() override;
+ virtual void DeviceSettingsUpdated() override;
// Populates in-memory cache from the local_state cache that is used to store
// device settings before the device is owned and to speed up policy

Powered by Google App Engine
This is Rietveld 408576698