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

Unified Diff: remoting/host/pairing_registry_delegate_win_unittest.cc

Issue 1101033002: Update {virtual,override} to follow C++11 style in remoting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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_win.h ('k') | remoting/host/sas_injector_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/pairing_registry_delegate_win_unittest.cc
diff --git a/remoting/host/pairing_registry_delegate_win_unittest.cc b/remoting/host/pairing_registry_delegate_win_unittest.cc
index 780192672d6ea03181e48c7022536a8d29dffd26..646bd194524c7c655b084893ff480777d2fe7b89 100644
--- a/remoting/host/pairing_registry_delegate_win_unittest.cc
+++ b/remoting/host/pairing_registry_delegate_win_unittest.cc
@@ -18,7 +18,7 @@ using protocol::PairingRegistry;
class PairingRegistryDelegateWinTest : public testing::Test {
public:
- virtual void SetUp() override {
+ void SetUp() override {
key_name_ = base::GenerateGUID();
base::win::RegKey root;
@@ -32,7 +32,7 @@ class PairingRegistryDelegateWinTest : public testing::Test {
KEY_READ | KEY_WRITE) == ERROR_SUCCESS);
}
- virtual void TearDown() override {
+ void TearDown() override {
privileged_.Close();
unprivileged_.Close();
EXPECT_TRUE(
« no previous file with comments | « remoting/host/pairing_registry_delegate_win.h ('k') | remoting/host/sas_injector_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698