chromium/content/public/common/url_utils.cc

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

#include "content/public/common/url_utils.h"

#include <set>
#include <string>
#include <string_view>

#include "base/check_op.h"
#include "base/containers/contains.h"
#include "base/containers/fixed_flat_set.h"
#include "base/feature_list.h"
#include "build/build_config.h"
#include "content/common/url_schemes.h"
#include "content/public/common/content_client.h"
#include "content/public/common/content_features.h"
#include "content/public/common/url_constants.h"
#include "third_party/blink/public/common/chrome_debug_urls.h"
#include "url/gurl.h"
#include "url/url_constants.h"
#include "url/url_util.h"

namespace content {

bool HasWebUIScheme(const GURL& url) {}

bool HasWebUIOrigin(const url::Origin& origin) {}

bool IsPdfInternalPluginAllowedOrigin(const url::Origin& origin) {}

bool IsSavableURL(const GURL& url) {}

bool IsURLHandledByNetworkStack(const GURL& url) {}

bool IsSafeRedirectTarget(const GURL& from_url, const GURL& to_url) {}

}  // namespace content