blob: b01080199e4bbdd413cc7c43766a828d791c7fc8 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_COMMON_CORS_UTIL_H_
#define EXTENSIONS_COMMON_CORS_UTIL_H_
#include <vector>
#include "extensions/common/permissions/permissions_data.h"
#include "services/network/public/mojom/cors_origin_pattern.mojom.h"
namespace extensions {
class Extension;
// Creates a CorsOriginPatternPtr vector that contains allowed origin list
// for the passed |extension|. Returned vector will be used to register the list
// to network::NetworkContext and blink::SecurityPolicy.
std::vector<network::mojom::CorsOriginPatternPtr>
CreateCorsOriginAccessAllowList(
const Extension& extension,
PermissionsData::EffectiveHostPermissionsMode mode);
// Creates a CorsOriginPatternPtr vector that contains blocked origin list
// for the passed |extension|. Returned vector will be used to register the list
// to network::NetworkContext and blink::SecurityPolicy.
std::vector<network::mojom::CorsOriginPatternPtr>
CreateCorsOriginAccessBlockList(const Extension& extension);
} // namespace extensions
#endif // EXTENSIONS_COMMON_CORS_UTIL_H_