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

Unified Diff: remoting/host/win/host_service.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
« no previous file with comments | « remoting/host/win/chromoting_module.h ('k') | remoting/host/win/rdp_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/host_service.h
diff --git a/remoting/host/win/host_service.h b/remoting/host/win/host_service.h
index 96cfff2d2d5ca881ca908fd2c660993764ba93a9..0ab78fee67b667f2aaa42a68e5c270296f0cb538 100644
--- a/remoting/host/win/host_service.h
+++ b/remoting/host/win/host_service.h
@@ -37,14 +37,14 @@ class HostService : public WtsTerminalMonitor {
int Run();
// WtsTerminalMonitor implementation
- virtual bool AddWtsTerminalObserver(const std::string& terminal_id,
+ bool AddWtsTerminalObserver(const std::string& terminal_id,
WtsTerminalObserver* observer) override;
- virtual void RemoveWtsTerminalObserver(
+ void RemoveWtsTerminalObserver(
WtsTerminalObserver* observer) override;
private:
HostService();
- ~HostService();
+ ~HostService() override;
// Notifies the service of changes in session state.
void OnSessionChange(uint32 event, uint32 session_id);
« no previous file with comments | « remoting/host/win/chromoting_module.h ('k') | remoting/host/win/rdp_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698