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

Unified Diff: remoting/host/pairing_registry_delegate_linux_unittest.cc

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/pairing_registry_delegate_linux.h ('k') | remoting/host/pairing_registry_delegate_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/pairing_registry_delegate_linux_unittest.cc
diff --git a/remoting/host/pairing_registry_delegate_linux_unittest.cc b/remoting/host/pairing_registry_delegate_linux_unittest.cc
index 5770503d291864538bb851dce312bf34a4215f0f..5b7f4ab14650606b9d9f2171bdfa957170b8b29c 100644
--- a/remoting/host/pairing_registry_delegate_linux_unittest.cc
+++ b/remoting/host/pairing_registry_delegate_linux_unittest.cc
@@ -15,7 +15,7 @@ using protocol::PairingRegistry;
class PairingRegistryDelegateLinuxTest : public testing::Test {
public:
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
// Create a temporary directory in order to get a unique name and use a
// subdirectory to ensure that PairingRegistryDelegateLinux::Save() creates
// the parent directory if it doesn't exist.
@@ -23,7 +23,7 @@ class PairingRegistryDelegateLinuxTest : public testing::Test {
temp_registry_ = temp_dir_.Append("paired-clients");
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
base::DeleteFile(temp_dir_, true);
}
« no previous file with comments | « remoting/host/pairing_registry_delegate_linux.h ('k') | remoting/host/pairing_registry_delegate_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698