1// Copyright 2013 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
5#include "components/autofill/core/common/autofill_switches.h"
6
7namespace autofill {
8namespace switches {
9
10// Forces the password manager to not ignore autocomplete='off' for password
11// forms.
12const char kDisableIgnoreAutocompleteOff[]  = "do-not-ignore-autocomplete-off";
13
14// Disables password generation when we detect that the user is going through
15// account creation.
16const char kDisablePasswordGeneration[]     = "disable-password-generation";
17
18// Enables password generation when we detect that the user is going through
19// account creation.
20const char kEnablePasswordGeneration[]      = "enable-password-generation";
21
22// Removes the requirement that we recieved a ping from the autofill servers
23// and that the user doesn't have the given form blacklisted. Used in testing.
24const char kLocalHeuristicsOnlyForPasswordGeneration[] =
25    "local-heuristics-only-for-password-generation";
26
27// Annotates forms with Autofill field type predictions.
28const char kShowAutofillTypePredictions[]   = "show-autofill-type-predictions";
29
30// Secure service URL for Online Wallet service. Used as the base url to escrow
31// credit card numbers.
32const char kWalletSecureServiceUrl[]        = "wallet-secure-service-url";
33
34// Service URL for Online Wallet service. Used as the base url for Online Wallet
35// API calls.
36const char kWalletServiceUrl[]              = "wallet-service-url";
37
38// Use the sandbox Online Wallet service URL (for developer testing).
39const char kWalletServiceUseSandbox[]       = "wallet-service-use-sandbox";
40
41}  // namespace switches
42}  // namespace autofill
43