| Index: chromeos/dbus/fake_shill_profile_client.h | 
| diff --git a/chromeos/dbus/fake_shill_profile_client.h b/chromeos/dbus/fake_shill_profile_client.h | 
| index 65c8417105cc75701f0803cfa2519d0911fd651c..904fa3f1f87149bf7148b149c5bd0356fd98ad7f 100644 | 
| --- a/chromeos/dbus/fake_shill_profile_client.h | 
| +++ b/chromeos/dbus/fake_shill_profile_client.h | 
| @@ -24,42 +24,42 @@ class CHROMEOS_EXPORT FakeShillProfileClient : | 
| virtual ~FakeShillProfileClient(); | 
|  | 
| // ShillProfileClient overrides | 
| -  virtual void Init(dbus::Bus* bus) OVERRIDE; | 
| +  virtual void Init(dbus::Bus* bus) override; | 
| virtual void AddPropertyChangedObserver( | 
| const dbus::ObjectPath& profile_path, | 
| -      ShillPropertyChangedObserver* observer) OVERRIDE; | 
| +      ShillPropertyChangedObserver* observer) override; | 
| virtual void RemovePropertyChangedObserver( | 
| const dbus::ObjectPath& profile_path, | 
| -      ShillPropertyChangedObserver* observer) OVERRIDE; | 
| +      ShillPropertyChangedObserver* observer) override; | 
| 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; | 
| -  virtual ShillProfileClient::TestInterface* GetTestInterface() OVERRIDE; | 
| +                           const ErrorCallback& error_callback) override; | 
| +  virtual ShillProfileClient::TestInterface* GetTestInterface() override; | 
|  | 
| // ShillProfileClient::TestInterface overrides. | 
| virtual void AddProfile(const std::string& profile_path, | 
| -                          const std::string& userhash) OVERRIDE; | 
| +                          const std::string& userhash) override; | 
| virtual void AddEntry(const std::string& profile_path, | 
| const std::string& entry_path, | 
| -                        const base::DictionaryValue& properties) OVERRIDE; | 
| +                        const base::DictionaryValue& properties) override; | 
| virtual bool AddService(const std::string& profile_path, | 
| -                          const std::string& service_path) OVERRIDE; | 
| +                          const std::string& service_path) override; | 
| virtual bool UpdateService(const std::string& profile_path, | 
| -                             const std::string& service_path) OVERRIDE; | 
| -  virtual void GetProfilePaths(std::vector<std::string>* profiles) OVERRIDE; | 
| +                             const std::string& service_path) override; | 
| +  virtual void GetProfilePaths(std::vector<std::string>* profiles) override; | 
| virtual bool GetService(const std::string& service_path, | 
| std::string* profile_path, | 
| -                          base::DictionaryValue* properties) OVERRIDE; | 
| -  virtual void ClearProfiles() OVERRIDE; | 
| +                          base::DictionaryValue* properties) override; | 
| +  virtual void ClearProfiles() override; | 
|  | 
| private: | 
| struct ProfileProperties; | 
|  |