blob: 9e549ae247065c746431c2d13a99bcb1f9066c05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// 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[] = "disable-auto-reload";
// Disables pop-up blocking.
const char kDisablePopupBlocking[] = "disable-popup-blocking";
// Enable auto-reload of error pages.
const char kEnableAutoReload[] = "enable-auto-reload";
// Contains a list of feature names for which origin trial experiments should
// be disabled. Names should be separated by "|" characters.
const char kOriginTrialDisabledFeatures[] = "origin-trial-disabled-features";
// Contains a list of token signatures for which origin trial experiments should
// be disabled. Tokens should be separated by "|" characters.
const char kOriginTrialDisabledTokens[] = "origin-trial-disabled-tokens";
// Comma-separated list of keys which will override the default public keys for
// checking origin trial tokens.
const char kOriginTrialPublicKey[] = "origin-trial-public-key";
// Sets the Reporting API delay to under a second to allow much quicker reports.
const char kShortReportingDelay[] = "short-reporting-delay";
// A string used to override the default user agent with a custom one.
const char kUserAgent[] = "user-agent";
} // namespace embedder_support
|