chromium/remoting/host/corp_host_status_logger.h

// Copyright 2024 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_CORP_HOST_STATUS_LOGGER_H_
#define REMOTING_HOST_CORP_HOST_STATUS_LOGGER_H_

#include <memory>
#include <string>

#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "remoting/protocol/session.h"
#include "remoting/protocol/session_observer.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"

namespace remoting {
namespace protocol {
class SessionManager;
}  // namespace protocol

class LoggingServiceClient;

// A class that reports host status changes to the corp logging service. This is
// not used for external users. For internal details, see go/crd-corp-logging.
class CorpHostStatusLogger final : public protocol::SessionObserver {};

}  // namespace remoting

#endif  // REMOTING_HOST_CORP_HOST_STATUS_LOGGER_H_