#ifndef REMOTING_HOST_HOST_EVENT_LOGGER_H_
#define REMOTING_HOST_HOST_EVENT_LOGGER_H_
#include <memory>
#include <string>
#include "base/compiler_specific.h"
#include "base/memory/weak_ptr.h"
namespace remoting {
class HostStatusMonitor;
class HostEventLogger {
public:
HostEventLogger(const HostEventLogger&) = delete;
HostEventLogger& operator=(const HostEventLogger&) = delete;
virtual ~HostEventLogger() {}
static std::unique_ptr<HostEventLogger> Create(
scoped_refptr<HostStatusMonitor> monitor,
const std::string& application_name);
protected:
HostEventLogger() {}
};
}
#endif