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

Unified Diff: remoting/host/in_memory_host_config.h

Issue 667123002: Standardize usage of virtual/override/final in remoting/ (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 | « remoting/host/host_window_proxy.cc ('k') | remoting/host/input_injector_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 48a9673c432d548488b22d936774d61f2fc4b428..dca9de13e8d60acc6ce620fcfa5a85fed1266f40 100644
--- a/remoting/host/in_memory_host_config.h
+++ b/remoting/host/in_memory_host_config.h
@@ -22,21 +22,19 @@ class InMemoryHostConfig : public MutableHostConfig,
public base::NonThreadSafe {
public:
InMemoryHostConfig();
- virtual ~InMemoryHostConfig();
+ ~InMemoryHostConfig() override;
// MutableHostConfig interface.
- virtual bool GetString(const std::string& path,
- std::string* out_value) const override;
- virtual bool GetBoolean(const std::string& path,
- bool* out_value) const override;
+ bool GetString(const std::string& path,
+ std::string* out_value) const override;
+ bool GetBoolean(const std::string& path, 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;
+ void SetString(const std::string& path, const std::string& in_value) override;
+ void SetBoolean(const std::string& path, bool in_value) override;
- virtual bool CopyFrom(const base::DictionaryValue* dictionary) override;
+ bool CopyFrom(const base::DictionaryValue* dictionary) override;
- virtual bool Save() override;
+ bool Save() override;
protected:
scoped_ptr<base::DictionaryValue> values_;
« no previous file with comments | « remoting/host/host_window_proxy.cc ('k') | remoting/host/input_injector_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698