// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_HOST_HOST_UTMP_LOGGER_H_ #define REMOTING_HOST_HOST_UTMP_LOGGER_H_ #include "base/containers/flat_map.h" #include "remoting/host/host_status_observer.h" namespace remoting { class HostStatusMonitor; // HostUTMPLogger records client connect/disconnect to a local log file. class HostUTMPLogger : public HostStatusObserver { … }; } // namespace remoting #endif // REMOTING_HOST_HOST_UTMP_LOGGER_H_