chromium/third_party/blink/renderer/platform/loader/link_header.cc

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

#include "third_party/blink/renderer/platform/loader/link_header.h"

#include <string_view>

#include "base/strings/string_util.h"
#include "components/link_header_util/link_header_util.h"
#include "third_party/blink/public/common/web_package/signed_exchange_consts.h"
#include "third_party/blink/renderer/platform/wtf/text/parsing_utilities.h"

namespace blink {

// Verify that the parameter is a link-extension which according to spec doesn't
// have to have a value.
static bool IsExtensionParameter(LinkHeader::LinkParameterName name) {}

static LinkHeader::LinkParameterName ParameterNameFromString(
    std::string_view name) {}

void LinkHeader::SetValue(LinkParameterName name, const String& value) {}

template <typename Iterator>
LinkHeader::LinkHeader(Iterator begin, Iterator end) : is_valid_(true) {}

LinkHeaderSet::LinkHeaderSet(const String& header) {}

}  // namespace blink