| Index: remoting/host/in_memory_host_config.h
|
| diff --git a/remoting/host/in_memory_host_config.h b/remoting/host/in_memory_host_config.h
|
| index 7d5357c2f65bfff3c1309c4b9c7c02efd12849e2..48a9673c432d548488b22d936774d61f2fc4b428 100644
|
| --- a/remoting/host/in_memory_host_config.h
|
| +++ b/remoting/host/in_memory_host_config.h
|
| @@ -26,17 +26,17 @@ class InMemoryHostConfig : public MutableHostConfig,
|
|
|
| // MutableHostConfig interface.
|
| virtual bool GetString(const std::string& path,
|
| - std::string* out_value) const OVERRIDE;
|
| + std::string* out_value) const override;
|
| virtual bool GetBoolean(const std::string& path,
|
| - bool* out_value) const OVERRIDE;
|
| + bool* out_value) const override;
|
|
|
| virtual void SetString(const std::string& path,
|
| - const std::string& in_value) OVERRIDE;
|
| - virtual void SetBoolean(const std::string& path, bool in_value) OVERRIDE;
|
| + const std::string& in_value) override;
|
| + virtual void SetBoolean(const std::string& path, bool in_value) override;
|
|
|
| - virtual bool CopyFrom(const base::DictionaryValue* dictionary) OVERRIDE;
|
| + virtual bool CopyFrom(const base::DictionaryValue* dictionary) override;
|
|
|
| - virtual bool Save() OVERRIDE;
|
| + virtual bool Save() override;
|
|
|
| protected:
|
| scoped_ptr<base::DictionaryValue> values_;
|
|
|