blob: 4436b07370e97ab358d9858c694a309a24e4c304 [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_ASH_BOREALIS_BOREALIS_PREFS_H_
#define CHROME_BROWSER_ASH_BOREALIS_BOREALIS_PREFS_H_
class PrefRegistrySimple;
namespace borealis {
namespace prefs {
// A boolean pref which records whether borealis has been successfully installed
// on the device.
extern const char kBorealisInstalledOnDevice[];
// A string pref which records the user's current "insert_coin" guess. We record
// the hash of that guess here, and the hash of this will be used to check the
// token (i.e. we double-hash whatever the user typed in).
extern const char kBorealisVmTokenHash[];
// A boolean preference for managing whether borealis is allowed for the user
// (mainly used by enterprises).
extern const char kBorealisAllowedForUser[];
extern const char kEngagementPrefsPrefix[];
extern const char kBorealisMicAllowed[];
// A string pref which records the current value of the BorealisLaunchOptions.
// The string is formatted as documented in
// chrome/browser/ash/borealis/borealis_launch_options.h.
extern const char kExtraLaunchOptions[];
void RegisterProfilePrefs(PrefRegistrySimple* registry);
} // namespace prefs
} // namespace borealis
#endif // CHROME_BROWSER_ASH_BOREALIS_BOREALIS_PREFS_H_