chromium/third_party/blink/common/scheme_registry.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 "third_party/blink/public/common/scheme_registry.h"

#include <unordered_set>

#include "base/containers/contains.h"
#include "base/no_destructor.h"
#include "base/strings/string_util.h"

namespace blink {

URLSchemesSet;

URLSchemesSet& GetMutableExtensionSchemes() {}

const URLSchemesSet& GetExtensionSchemes() {}

void CommonSchemeRegistry::RegisterURLSchemeAsExtension(
    const std::string& scheme) {}

void CommonSchemeRegistry::RemoveURLSchemeAsExtensionForTest(
    const std::string& scheme) {}

bool CommonSchemeRegistry::IsExtensionScheme(const std::string& scheme) {}

}  // namespace blink