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

Unified Diff: remoting/host/in_memory_host_config.h

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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_linux.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 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_;
« no previous file with comments | « remoting/host/host_window_proxy.cc ('k') | remoting/host/input_injector_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698