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

Unified Diff: remoting/host/sas_injector_win.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
Index: remoting/host/sas_injector_win.cc
diff --git a/remoting/host/sas_injector_win.cc b/remoting/host/sas_injector_win.cc
index 53e98b1a797a61530364a91f4ad1ea8323288a5e..ec64a11c4941df0b38f03d44e86b1574f49dbce7 100644
--- a/remoting/host/sas_injector_win.cc
+++ b/remoting/host/sas_injector_win.cc
@@ -109,10 +109,10 @@ bool ScopedSoftwareSasPolicy::Apply() {
class SasInjectorWin : public SasInjector {
public:
SasInjectorWin();
- virtual ~SasInjectorWin();
+ ~SasInjectorWin() override;
// SasInjector implementation.
- virtual bool InjectSas() override;
+ bool InjectSas() override;
private:
base::ScopedNativeLibrary sas_dll_;
@@ -125,10 +125,10 @@ class SasInjectorWin : public SasInjector {
class SasInjectorXp : public SasInjector {
public:
SasInjectorXp();
- virtual ~SasInjectorXp();
+ ~SasInjectorXp() override;
// SasInjector implementation.
- virtual bool InjectSas() override;
+ bool InjectSas() override;
};
SasInjectorWin::SasInjectorWin() : send_sas_(nullptr) {
« no previous file with comments | « remoting/host/pairing_registry_delegate_win_unittest.cc ('k') | remoting/host/setup/daemon_controller_delegate_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698