// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_SECURITY_COOP_CROSS_ORIGIN_ISOLATION_MODE_H_ #define CONTENT_BROWSER_SECURITY_COOP_CROSS_ORIGIN_ISOLATION_MODE_H_ namespace content { // This enum represents the cross-origin isolation mode as defined in the HTML // spec: // https://html.spec.whatwg.org/dev/document-sequences.html#cross-origin-isolation-mode // // The cross-origin isolation describes the cross-origin capabilities of an // execution context. enum class CrossOriginIsolationMode { … }; } // namespace content #endif // CONTENT_BROWSER_SECURITY_COOP_CROSS_ORIGIN_ISOLATION_MODE_H_