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

Unified Diff: chromeos/dbus/shill_ipconfig_client.cc

Issue 628883002: replace OVERRIDE and FINAL with override and final in chromeos/ (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 | « chromeos/dbus/shill_device_client.cc ('k') | chromeos/dbus/shill_manager_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/shill_ipconfig_client.cc
diff --git a/chromeos/dbus/shill_ipconfig_client.cc b/chromeos/dbus/shill_ipconfig_client.cc
index 48861edc0ed414421b309edb1f56c38e84662603..cd4467f71c84474f4607c5f46d4fecc9d51e1412 100644
--- a/chromeos/dbus/shill_ipconfig_client.cc
+++ b/chromeos/dbus/shill_ipconfig_client.cc
@@ -29,32 +29,32 @@ class ShillIPConfigClientImpl : public ShillIPConfigClient {
// ShillIPConfigClient overrides.
virtual void AddPropertyChangedObserver(
const dbus::ObjectPath& ipconfig_path,
- ShillPropertyChangedObserver* observer) OVERRIDE {
+ ShillPropertyChangedObserver* observer) override {
GetHelper(ipconfig_path)->AddPropertyChangedObserver(observer);
}
virtual void RemovePropertyChangedObserver(
const dbus::ObjectPath& ipconfig_path,
- ShillPropertyChangedObserver* observer) OVERRIDE {
+ ShillPropertyChangedObserver* observer) override {
GetHelper(ipconfig_path)->RemovePropertyChangedObserver(observer);
}
virtual void Refresh(const dbus::ObjectPath& ipconfig_path,
- const VoidDBusMethodCallback& callback) OVERRIDE;
+ const VoidDBusMethodCallback& callback) override;
virtual void GetProperties(const dbus::ObjectPath& ipconfig_path,
- const DictionaryValueCallback& callback) OVERRIDE;
+ const DictionaryValueCallback& callback) override;
virtual void SetProperty(const dbus::ObjectPath& ipconfig_path,
const std::string& name,
const base::Value& value,
- const VoidDBusMethodCallback& callback) OVERRIDE;
+ const VoidDBusMethodCallback& callback) override;
virtual void ClearProperty(const dbus::ObjectPath& ipconfig_path,
const std::string& name,
- const VoidDBusMethodCallback& callback) OVERRIDE;
+ const VoidDBusMethodCallback& callback) override;
virtual void Remove(const dbus::ObjectPath& ipconfig_path,
- const VoidDBusMethodCallback& callback) OVERRIDE;
- virtual ShillIPConfigClient::TestInterface* GetTestInterface() OVERRIDE;
+ const VoidDBusMethodCallback& callback) override;
+ virtual ShillIPConfigClient::TestInterface* GetTestInterface() override;
protected:
- virtual void Init(dbus::Bus* bus) OVERRIDE {
+ virtual void Init(dbus::Bus* bus) override {
bus_ = bus;
}
« no previous file with comments | « chromeos/dbus/shill_device_client.cc ('k') | chromeos/dbus/shill_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698