// Copyright 2021 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_PUBLIC_BROWSER_SITE_ISOLATION_MODE_H_ #define CONTENT_PUBLIC_BROWSER_SITE_ISOLATION_MODE_H_ namespace content { // Refers to particular kinds of site isolation which may be active. This is // used to specify different memory thresholds for different kinds of site // isolation. enum class SiteIsolationMode { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_SITE_ISOLATION_MODE_H_