blob: 6c0b8bd006ec2d6c3a165c8e9e838eeda7317801 [file] [log] [blame]
Avi Drissman4a8573c2022-09-09 19:35:541// Copyright 2020 The Chromium Authors
Mattias Nissler380cf4f2021-03-22 15:50:462// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_SITE_ISOLATION_ABOUT_FLAGS_H_
6#define CHROME_BROWSER_SITE_ISOLATION_ABOUT_FLAGS_H_
7
8#include <string>
9
10#include "base/strings/strcat.h"
11
12namespace about_flags {
13
Lei Zhangd9dd0cd2025-05-08 01:00:0414inline constexpr char kSiteIsolationTrialOptOutInternalName[] =
Mattias Nissler380cf4f2021-03-22 15:50:4615 "site-isolation-trial-opt-out";
16
17inline std::string SiteIsolationTrialOptOutChoiceEnabled() {
18 return base::StrCat({kSiteIsolationTrialOptOutInternalName, "@1"});
19}
20
21} // namespace about_flags
22
23#endif // CHROME_BROWSER_SITE_ISOLATION_ABOUT_FLAGS_H_