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

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

Issue 851123003: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 83578ed5cb21d380025eb24549804b4accd9d1e8..4705e6176feefe80faa47e6bff9697e0eeb56199 100644
--- a/chrome/browser/chromeos/settings/device_settings_provider.h
+++ b/chrome/browser/chromeos/settings/device_settings_provider.h
@@ -43,29 +43,27 @@ class DeviceSettingsProvider
DeviceSettingsProvider(const NotifyObserversCallback& notify_cb,
DeviceSettingsService* device_settings_service);
- virtual ~DeviceSettingsProvider();
+ ~DeviceSettingsProvider() override;
// Returns true if |path| is handled by this provider.
static bool IsDeviceSetting(const std::string& name);
// CrosSettingsProvider implementation.
- 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::Value* Get(const std::string& path) const override;
+ TrustedStatus PrepareTrustedValues(const base::Closure& callback) override;
+ bool HandlesSetting(const std::string& path) const override;
private:
// CrosSettingsProvider implementation:
- virtual void DoSet(const std::string& path,
- const base::Value& value) override;
+ void DoSet(const std::string& path, const base::Value& value) override;
// DeviceSettingsService::Observer implementation:
- virtual void OwnershipStatusChanged() override;
- virtual void DeviceSettingsUpdated() override;
- virtual void OnDeviceSettingsServiceShutdown() override;
+ void OwnershipStatusChanged() override;
+ void DeviceSettingsUpdated() override;
+ void OnDeviceSettingsServiceShutdown() override;
// ownership::OwnerSettingsService::Observer implementation:
- virtual void OnTentativeChangesInPolicy(
+ void OnTentativeChangesInPolicy(
const enterprise_management::PolicyData& policy_data) override;
// Populates in-memory cache from the local_state cache that is used to store

Powered by Google App Engine
This is Rietveld 408576698