blob: a8679d97280e13551aecef0cab63528b40a09ef7 [file] [log] [blame]
Mattias Nissler380cf4f2021-03-22 15:50:461// Copyright 2020 The Chromium Authors. All rights reserved.
2// 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_