blob: 6c0b8bd006ec2d6c3a165c8e9e838eeda7317801 [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_SITE_ISOLATION_ABOUT_FLAGS_H_
#define CHROME_BROWSER_SITE_ISOLATION_ABOUT_FLAGS_H_
#include <string>
#include "base/strings/strcat.h"
namespace about_flags {
inline constexpr char kSiteIsolationTrialOptOutInternalName[] =
"site-isolation-trial-opt-out";
inline std::string SiteIsolationTrialOptOutChoiceEnabled() {
return base::StrCat({kSiteIsolationTrialOptOutInternalName, "@1"});
}
} // namespace about_flags
#endif // CHROME_BROWSER_SITE_ISOLATION_ABOUT_FLAGS_H_