chromium/remoting/base/url_loader_network_service_observer.h

// Copyright 2023 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_BASE_URL_LOADER_NETWORK_SERVICE_OBSERVER_H_
#define REMOTING_BASE_URL_LOADER_NETWORK_SERVICE_OBSERVER_H_

#include <memory>
#include <string>
#include <vector>

#include "base/functional/callback.h"
#include "base/logging.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/sequence_checker.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "net/ssl/client_cert_store.h"
#include "services/network/public/mojom/url_loader_network_service_observer.mojom.h"
#include "url/gurl.h"

namespace remoting {

// Helper class for providing a certificate for HTTPS requests.
class UrlLoaderNetworkServiceObserver
    : public network::mojom::URLLoaderNetworkServiceObserver {};

}  // namespace remoting

#endif  // REMOTING_BASE_URL_LOADER_NETWORK_SERVICE_OBSERVER_H_