blob: 66e46636497f2273f2e30643a4c1f213700228d7 [file] [log] [blame]
// Copyright 2016 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_PROTOCOL_ICE_CONFIG_REQUEST_H_
#define REMOTING_PROTOCOL_ICE_CONFIG_REQUEST_H_
#include "base/functional/callback_forward.h"
namespace remoting::protocol {
struct IceConfig;
// Abstract interface used to fetch STUN and TURN configuration.
class IceConfigRequest {
public:
// Callback to receive results of the request. |ice_config| is null if the
// request has failed.
typedef base::OnceCallback<void(const IceConfig& ice_config)>
OnIceConfigCallback;
virtual ~IceConfigRequest() {}
// Sends the request and calls the |callback| with the results.
virtual void Send(OnIceConfigCallback callback) = 0;
};
} // namespace remoting::protocol
#endif // REMOTING_PROTOCOL_ICE_CONFIG_REQUEST_H_