#include "remoting/host/host_utmp_logger.h"
#include <pty.h>
#include <unistd.h>
#include <utempter.h>
#include "remoting/base/logging.h"
#include "remoting/host/host_status_monitor.h"
namespace remoting {
namespace {
constexpr char kApplicationName[] = …;
}
HostUTMPLogger::HostUTMPLogger(scoped_refptr<HostStatusMonitor> monitor)
: … { … }
HostUTMPLogger::~HostUTMPLogger() { … }
void HostUTMPLogger::OnClientConnected(const std::string& signaling_id) { … }
void HostUTMPLogger::OnClientDisconnected(const std::string& signaling_id) { … }
}