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

Unified Diff: remoting/host/win/wts_session_process_delegate.h

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/win/wts_session_process_delegate.h
diff --git a/remoting/host/win/wts_session_process_delegate.h b/remoting/host/win/wts_session_process_delegate.h
index 625c84624b946aca832c1c9175e5cf72c5c721ba..e99db6766d3a61dc1a407c79bf7e1c2f7e969ed1 100644
--- a/remoting/host/win/wts_session_process_delegate.h
+++ b/remoting/host/win/wts_session_process_delegate.h
@@ -34,16 +34,16 @@ class WtsSessionProcessDelegate
scoped_ptr<base::CommandLine> target,
bool launch_elevated,
const std::string& channel_security);
- ~WtsSessionProcessDelegate();
+ ~WtsSessionProcessDelegate() override;
// Initializes the object returning true on success.
bool Initialize(uint32 session_id);
// WorkerProcessLauncher::Delegate implementation.
- virtual void LaunchProcess(WorkerProcessLauncher* event_handler) override;
- virtual void Send(IPC::Message* message) override;
- virtual void CloseChannel() override;
- virtual void KillProcess() override;
+ void LaunchProcess(WorkerProcessLauncher* event_handler) override;
+ void Send(IPC::Message* message) override;
+ void CloseChannel() override;
+ void KillProcess() override;
private:
// The actual implementation resides in WtsSessionProcessDelegate::Core class.
« no previous file with comments | « remoting/host/win/worker_process_launcher_unittest.cc ('k') | remoting/host/win/wts_session_process_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698