chromium/services/network/public/cpp/x_frame_options_parser.cc

// Copyright 2020 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/x_frame_options_parser.h"

#include <string>
#include <string_view>

#include "base/strings/string_util.h"
#include "net/http/http_response_headers.h"
#include "services/network/public/mojom/x_frame_options.mojom-shared.h"

namespace network {

mojom::XFrameOptionsValue ParseXFrameOptions(
    const net::HttpResponseHeaders& headers) {}

}  // namespace network