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

Unified Diff: remoting/host/win/chromoting_module.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/setup/me2me_native_messaging_host.h ('k') | remoting/host/win/host_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/chromoting_module.h
diff --git a/remoting/host/win/chromoting_module.h b/remoting/host/win/chromoting_module.h
index b20184a8d5bd31149480e28813ce2fa446eeec21..867deeeb3f11c8fc62e6ac8c7c5646f59ffdae21 100644
--- a/remoting/host/win/chromoting_module.h
+++ b/remoting/host/win/chromoting_module.h
@@ -36,7 +36,7 @@ class ChromotingModule : public ATL::CAtlModuleT<ChromotingModule> {
// Initializes the module. |classes| and |classes_end| must outlive |this|.
ChromotingModule(ATL::_ATL_OBJMAP_ENTRY* classes,
ATL::_ATL_OBJMAP_ENTRY* classes_end);
- virtual ~ChromotingModule();
+ ~ChromotingModule() override;
// Returns the task runner used by the module. Returns nullptr if the task
// runner hasn't been registered yet or if the server is shutting down.
@@ -47,7 +47,7 @@ class ChromotingModule : public ATL::CAtlModuleT<ChromotingModule> {
bool Run();
// ATL::CAtlModuleT<> overrides
- virtual LONG Unlock() override;
+ LONG Unlock() override;
DECLARE_LIBID(LIBID_ChromotingLib)
« no previous file with comments | « remoting/host/setup/me2me_native_messaging_host.h ('k') | remoting/host/win/host_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698