blob: 765bcfe522078c6a80290639d5813595f5fab083 [file] [log] [blame]
// Copyright 2015 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 CHROME_COMMON_SECURE_ORIGIN_WHITELIST_H_
#define CHROME_COMMON_SECURE_ORIGIN_WHITELIST_H_
#include <set>
#include <string>
#include <vector>
#include "url/origin.h"
class PrefRegistrySimple;
namespace secure_origin_whitelist {
// Return a whitelist of origins that need to be considered trustworthy.
// The whitelist is given by kUnsafelyTreatInsecureOriginAsSecure
// command-line option. See
// https://www.w3.org/TR/powerful-features/#is-origin-trustworthy.
std::vector<url::Origin> GetWhitelist();
// Returns a whitelist of schemes that should bypass the Is Privileged Context
// check. See http://www.w3.org/TR/powerful-features/#settings-privileged.
std::set<std::string> GetSchemesBypassingSecureContextCheck();
// Register preferences for Secure Origin Whitelists.
void RegisterProfilePrefs(PrefRegistrySimple*);
} // namespace secure_origin_whitelist
#endif // CHROME_COMMON_SECURE_ORIGIN_WHITELIST_H_