Chromium Code Reviews| 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 85f31d26c1d01c8168d17dd46cb134eaa6a984b9..84bff75ff66f85914e6f4a13824b58d210c0b8d2 100644 |
| --- a/remoting/host/host_event_logger_win.cc |
| +++ b/remoting/host/host_event_logger_win.cc |
| @@ -40,6 +40,9 @@ class HostEventLoggerWin : public HostEventLogger, public HostStatusObserver { |
| const protocol::TransportRoute& route) OVERRIDE; |
| virtual void OnShutdown() OVERRIDE; |
| + //HostEventLogger implementation. |
|
alexeypa (please no reviews)
2012/08/29 15:15:48
nit: space in front of HostEventLogger
rmsousa
2012/08/29 19:24:40
Done.
|
| + virtual void OnStart(const std::string& xmpp_login) OVERRIDE; |
| + |
| private: |
| void LogString(WORD type, DWORD event_id, const std::string& string); |
| void Log(WORD type, DWORD event_id, const std::vector<std::string>& strings); |
| @@ -103,6 +106,10 @@ void HostEventLoggerWin::OnClientRouteChange( |
| void HostEventLoggerWin::OnShutdown() { |
| } |
| +void HostEventLoggerWin::OnStart(const std::string& xmpp_login) { |
| + LogString(EVENTLOG_INFORMATION_TYPE, MSG_HOST_STARTED, xmpp_login); |
| +} |
| + |
| void HostEventLoggerWin::Log(WORD type, |
| DWORD event_id, |
| const std::vector<std::string>& strings) { |