Index: chromeos/dbus/shill_profile_client.cc |
diff --git a/chromeos/dbus/shill_profile_client.cc b/chromeos/dbus/shill_profile_client.cc |
index 25f48b6ce0a221669d864ca3c1190ab73eaf0a8a..f7f3de524d19d5246bc8043058fdf9d03992957b 100644 |
--- a/chromeos/dbus/shill_profile_client.cc |
+++ b/chromeos/dbus/shill_profile_client.cc |
@@ -28,35 +28,35 @@ class ShillProfileClientImpl : public ShillProfileClient { |
virtual void AddPropertyChangedObserver( |
const dbus::ObjectPath& profile_path, |
- ShillPropertyChangedObserver* observer) OVERRIDE { |
+ ShillPropertyChangedObserver* observer) override { |
GetHelper(profile_path)->AddPropertyChangedObserver(observer); |
} |
virtual void RemovePropertyChangedObserver( |
const dbus::ObjectPath& profile_path, |
- ShillPropertyChangedObserver* observer) OVERRIDE { |
+ ShillPropertyChangedObserver* observer) override { |
GetHelper(profile_path)->RemovePropertyChangedObserver(observer); |
} |
virtual void GetProperties( |
const dbus::ObjectPath& profile_path, |
const DictionaryValueCallbackWithoutStatus& callback, |
- const ErrorCallback& error_callback) OVERRIDE; |
+ const ErrorCallback& error_callback) override; |
virtual void GetEntry(const dbus::ObjectPath& profile_path, |
const std::string& entry_path, |
const DictionaryValueCallbackWithoutStatus& callback, |
- const ErrorCallback& error_callback) OVERRIDE; |
+ const ErrorCallback& error_callback) override; |
virtual void DeleteEntry(const dbus::ObjectPath& profile_path, |
const std::string& entry_path, |
const base::Closure& callback, |
- const ErrorCallback& error_callback) OVERRIDE; |
+ const ErrorCallback& error_callback) override; |
- virtual TestInterface* GetTestInterface() OVERRIDE { |
+ virtual TestInterface* GetTestInterface() override { |
return NULL; |
} |
protected: |
- virtual void Init(dbus::Bus* bus) OVERRIDE { |
+ virtual void Init(dbus::Bus* bus) override { |
bus_ = bus; |
} |