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

Unified Diff: remoting/host/in_memory_host_config.h

Issue 8601011: Add OVERRIDE to remoting/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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/client_session.h ('k') | remoting/host/json_host_config.h » ('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 e96fdb40218cb5a17c5d77b5a5bb8ced9874b9c6..4043e83ba5103e7ba01aa4461797b27f4ad2447c 100644
--- a/remoting/host/in_memory_host_config.h
+++ b/remoting/host/in_memory_host_config.h
@@ -25,13 +25,15 @@ class InMemoryHostConfig : public MutableHostConfig {
virtual ~InMemoryHostConfig();
// MutableHostConfig interface.
- virtual bool GetString(const std::string& path, std::string* out_value);
- virtual bool GetBoolean(const std::string& path, bool* out_value);
+ virtual bool GetString(const std::string& path,
+ std::string* out_value) OVERRIDE;
+ virtual bool GetBoolean(const std::string& path, bool* out_value) OVERRIDE;
- virtual void SetString(const std::string& path, const std::string& in_value);
- virtual void SetBoolean(const std::string& path, bool in_value);
+ virtual void SetString(const std::string& path,
+ const std::string& in_value) OVERRIDE;
+ virtual void SetBoolean(const std::string& path, bool in_value) OVERRIDE;
- virtual void Save();
+ virtual void Save() OVERRIDE;
protected:
// |lock_| must be locked whenever |values_| is used.
« no previous file with comments | « remoting/host/client_session.h ('k') | remoting/host/json_host_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698