// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/embedder_support/switches.h" namespace embedder_support { // Disable auto-reload of error pages. const char kDisableAutoReload[] = …; // Disables pop-up blocking. const char kDisablePopupBlocking[] = …; // Enable auto-reload of error pages. const char kEnableAutoReload[] = …; // Enable headless mode. const char kHeadless[] = …; // Contains a list of feature names for which origin trial experiments should // be disabled. Names should be separated by "|" characters. const char kOriginTrialDisabledFeatures[] = …; // Contains a list of token signatures for which origin trial experiments should // be disabled. Tokens should be separated by "|" characters. const char kOriginTrialDisabledTokens[] = …; // Comma-separated list of keys which will override the default public keys for // checking origin trial tokens. const char kOriginTrialPublicKey[] = …; // Sets the Reporting API delay to under a second to allow much quicker reports. const char kShortReportingDelay[] = …; // A string used to override the default user agent with a custom one. const char kUserAgent[] = …; } // namespace embedder_support