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/host_event_logger_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
« no previous file with comments | « remoting/host/gnubby_auth_handler_win.cc ('k') | remoting/host/host_mock_objects.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/host_event_logger_win.cc
diff --git a/remoting/host/host_event_logger_win.cc b/remoting/host/host_event_logger_win.cc
index fa58b5247b954e926bf0584c9a002cc2e19501eb..d8b039fb6e64a04de26c523c87b6554e1f432f5c 100644
--- a/remoting/host/host_event_logger_win.cc
+++ b/remoting/host/host_event_logger_win.cc
@@ -27,19 +27,19 @@ class HostEventLoggerWin : public HostEventLogger, public HostStatusObserver {
HostEventLoggerWin(base::WeakPtr<HostStatusMonitor> monitor,
const std::string& application_name);
- virtual ~HostEventLoggerWin();
+ ~HostEventLoggerWin() override;
// HostStatusObserver implementation. These methods will be called from the
// network thread.
- virtual void OnClientAuthenticated(const std::string& jid) override;
- virtual void OnClientDisconnected(const std::string& jid) override;
- virtual void OnAccessDenied(const std::string& jid) override;
- virtual void OnClientRouteChange(
+ void OnClientAuthenticated(const std::string& jid) override;
+ void OnClientDisconnected(const std::string& jid) override;
+ void OnAccessDenied(const std::string& jid) override;
+ void OnClientRouteChange(
const std::string& jid,
const std::string& channel_name,
const protocol::TransportRoute& route) override;
- virtual void OnStart(const std::string& xmpp_login) override;
- virtual void OnShutdown() override;
+ void OnStart(const std::string& xmpp_login) override;
+ void OnShutdown() override;
private:
void LogString(WORD type, DWORD event_id, const std::string& string);
« no previous file with comments | « remoting/host/gnubby_auth_handler_win.cc ('k') | remoting/host/host_mock_objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698