blob: 3e6b3883fff0cc7b069e93d678f4f83964501b0c (
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
37
38
39
40
41
42
43
44
45
46
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/autofill/common/autofill_switches.h"
namespace autofill {
namespace switches {
// Flag used to tell Chrome the base url of the Autofill service.
const char kAutofillServiceUrl[] = "autofill-service-url";
// Bypass autocheckout whitelist check, so all sites are enabled.
const char kBypassAutocheckoutWhitelist[] = "bypass-autocheckout-whitelist";
// Disables an interactive autocomplete UI. See kEnableInteractiveAutocomplete
// for a description.
const char kDisableInteractiveAutocomplete[] =
"disable-interactive-autocomplete";
// Enable autofill for new elements like checkboxes. crbug.com/157636
const char kEnableExperimentalFormFilling[] =
"enable-experimental-form-filling";
// Enables an interactive autocomplete UI and a way to invoke this UI from
// WebKit by enabling HTMLFormElement#requestAutocomplete (and associated
// autocomplete* events and logic).
const char kEnableInteractiveAutocomplete[] = "enable-interactive-autocomplete";
// Annotates forms with Autofill field type predictions.
const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions";
// Secure service URL for Online Wallet service. Used as the base url to escrow
// credit card numbers.
const char kWalletSecureServiceUrl[] = "wallet-secure-service-url";
// Service URL for Online Wallet service. Used as the base url for Online Wallet
// API calls.
const char kWalletServiceUrl[] = "wallet-service-url";
// Enable production Online Wallet service. If this flag is not set, the sandbox
// service will be used.
const char kWalletServiceUseProd[] = "wallet-service-use-prod";
} // namespace switches
} // namespace autofill
|