chromium/services/network/orb/orb_api.cc

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "services/network/public/cpp/orb/orb_api.h"

#include <string>
#include <unordered_set>

#include "net/http/http_response_headers.h"
#include "services/network/orb/orb_impl.h"
#include "services/network/public/mojom/url_response_head.mojom.h"

namespace network::orb {

namespace {

void RemoveAllHttpResponseHeaders(
    const scoped_refptr<net::HttpResponseHeaders>& headers) {}

}  // namespace

ResponseAnalyzer::~ResponseAnalyzer() = default;

// static
std::unique_ptr<ResponseAnalyzer> ResponseAnalyzer::Create(
    PerFactoryState* state) {}

void SanitizeBlockedResponseHeaders(network::mojom::URLResponseHead& response) {}

}  // namespace network::orb