chromium/remoting/signaling/xmpp_log_to_server.h

// Copyright 2014 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_SIGNALING_XMPP_LOG_TO_SERVER_H_
#define REMOTING_SIGNALING_XMPP_LOG_TO_SERVER_H_

#include <map>
#include <string>

#include "base/containers/circular_deque.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "base/task/sequenced_task_runner.h"
#include "remoting/signaling/log_to_server.h"
#include "remoting/signaling/server_log_entry.h"
#include "remoting/signaling/signal_strategy.h"

namespace jingle_xmpp {
class XmlElement;
}  // namespace jingle_xmpp

namespace remoting {

class IqSender;

// XmppLogToServer sends log entries to a server through the signaling strategy.
class XmppLogToServer : public LogToServer, public SignalStrategy::Listener {};

}  // namespace remoting

#endif  // REMOTING_SIGNALING_XMPP_LOG_TO_SERVER_H_