blob: 4735ebf8d5ff318315ca7bbba3114d143a09b53a (
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
|
// 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 "fuchsia_web/webengine/switches.h"
namespace switches {
const char kEnableContentDirectories[] = "enable-content-directories";
const char kEnableWidevine[] = "enable-widevine";
const char kIncognito[] = "incognito";
const char kPlayreadyKeySystem[] = "playready-key-system";
const char kEnableRemoteDebugMode[] = "remote-debug-mode";
const char kUserAgentProductAndVersion[] = "user-agent-product";
const char kAllowRunningInsecureContent[] = "allow-running-insecure-content";
const char kUseLegacyMetricsService[] = "use-legacy-metrics-service";
const char kCorsExemptHeaders[] = "cors-exempt-headers";
const char kEnableCastStreamingReceiver[] = "enable-cast-streaming-receiver";
const char kCdmDataDirectory[] = "cdm-data-directory";
const char kCdmDataQuotaBytes[] = "cdm-data-quota-bytes";
const char kDataQuotaBytes[] = "data-quota-bytes";
const char kGoogleApiKey[] = "google-api-key";
const char kContextProvider[] = "context-provider";
const char kEnableCfv2[] = "enable-cfv2";
} // namespace switches
|