pref_names.cc 778 B

123456789101112131415161718192021
  1. // Copyright 2021 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. #include "components/embedder_support/origin_trials/pref_names.h"
  5. namespace embedder_support {
  6. namespace prefs {
  7. // The base64-encoded representation of the public key to use to validate origin
  8. // trial token signatures.
  9. const char kOriginTrialPublicKey[] = "origin_trials.public_key";
  10. // A list of origin trial features to disable by policy.
  11. const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features";
  12. // A list of origin trial tokens to disable by policy.
  13. const char kOriginTrialDisabledTokens[] = "origin_trials.disabled_tokens";
  14. } // namespace prefs
  15. } // namespace embedder_support