chromium/third_party/blink/renderer/core/fetch/fetch_header_list.cc

// Copyright 2014 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/core/fetch/fetch_header_list.h"

#include <algorithm>
#include <utility>
#include "third_party/blink/renderer/platform/loader/cors/cors.h"
#include "third_party/blink/renderer/platform/network/http_parsers.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"

namespace blink {

FetchHeaderList* FetchHeaderList::Clone() const {}

FetchHeaderList::FetchHeaderList() {}

FetchHeaderList::~FetchHeaderList() {}

void FetchHeaderList::Append(const String& name, const String& value) {}

void FetchHeaderList::Set(const String& name, const String& value) {}

String FetchHeaderList::ExtractMIMEType() const {}

size_t FetchHeaderList::size() const {}

void FetchHeaderList::Remove(const String& name) {}

bool FetchHeaderList::Get(const String& name, String& result) const {}

Vector<String> FetchHeaderList::GetSetCookie() const {}

String FetchHeaderList::GetAsRawString(int status_code,
                                       String status_message) const {}

bool FetchHeaderList::Has(const String& name) const {}

void FetchHeaderList::ClearList() {}

Vector<FetchHeaderList::Header> FetchHeaderList::SortAndCombine() const {}

bool FetchHeaderList::IsValidHeaderName(const String& name) {}

bool FetchHeaderList::IsValidHeaderValue(const String& value) {}

}  // namespace blink