| Index: chromeos/dbus/fake_shill_ipconfig_client.h
|
| diff --git a/chromeos/dbus/fake_shill_ipconfig_client.h b/chromeos/dbus/fake_shill_ipconfig_client.h
|
| index ff25246c704b2be0f1d23fa6cd98151e749c2249..9a2e3eff5b525a075ad509d9668d9bce9b692cde 100644
|
| --- a/chromeos/dbus/fake_shill_ipconfig_client.h
|
| +++ b/chromeos/dbus/fake_shill_ipconfig_client.h
|
| @@ -22,31 +22,31 @@ class CHROMEOS_EXPORT FakeShillIPConfigClient
|
| virtual ~FakeShillIPConfigClient();
|
|
|
| // ShillIPConfigClient overrides
|
| - virtual void Init(dbus::Bus* bus) OVERRIDE;
|
| + virtual void Init(dbus::Bus* bus) override;
|
| virtual void AddPropertyChangedObserver(
|
| const dbus::ObjectPath& ipconfig_path,
|
| - ShillPropertyChangedObserver* observer) OVERRIDE;
|
| + ShillPropertyChangedObserver* observer) override;
|
| virtual void RemovePropertyChangedObserver(
|
| const dbus::ObjectPath& ipconfig_path,
|
| - ShillPropertyChangedObserver* observer) OVERRIDE;
|
| + ShillPropertyChangedObserver* observer) override;
|
| 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;
|
|
|
| // ShillIPConfigClient::TestInterface overrides.
|
| virtual void AddIPConfig(const std::string& ip_config_path,
|
| - const base::DictionaryValue& properties) OVERRIDE;
|
| + const base::DictionaryValue& properties) override;
|
|
|
| private:
|
| // Runs callback with |values|.
|
|
|