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

Unified Diff: remoting/host/pairing_registry_delegate_linux.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/oauth_token_getter.h ('k') | remoting/host/pairing_registry_delegate_linux_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/pairing_registry_delegate_linux.h
diff --git a/remoting/host/pairing_registry_delegate_linux.h b/remoting/host/pairing_registry_delegate_linux.h
index 491f310bed7550cfaaffa813b2c361decc1a7b79..293b28f4c0febec1fc306dfc664df05b1a6c0479 100644
--- a/remoting/host/pairing_registry_delegate_linux.h
+++ b/remoting/host/pairing_registry_delegate_linux.h
@@ -22,12 +22,12 @@ class PairingRegistryDelegateLinux
virtual ~PairingRegistryDelegateLinux();
// PairingRegistry::Delegate interface
- virtual scoped_ptr<base::ListValue> LoadAll() OVERRIDE;
- virtual bool DeleteAll() OVERRIDE;
+ virtual scoped_ptr<base::ListValue> LoadAll() override;
+ virtual bool DeleteAll() override;
virtual protocol::PairingRegistry::Pairing Load(
- const std::string& client_id) OVERRIDE;
- virtual bool Save(const protocol::PairingRegistry::Pairing& pairing) OVERRIDE;
- virtual bool Delete(const std::string& client_id) OVERRIDE;
+ const std::string& client_id) override;
+ virtual bool Save(const protocol::PairingRegistry::Pairing& pairing) override;
+ virtual bool Delete(const std::string& client_id) override;
private:
FRIEND_TEST_ALL_PREFIXES(PairingRegistryDelegateLinuxTest, SaveAndLoad);
« no previous file with comments | « remoting/host/oauth_token_getter.h ('k') | remoting/host/pairing_registry_delegate_linux_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698