blob: 862fc548b74dde21545e9ad7b7d36606850e3833 [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
14constexpr char kSiteIsolationTrialOptOutInternalName[] =
15 "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_