Support for unpacked ARM packed relocations.
[chromium-blink-merge.git] / components / autofill / core / common / autofill_switches.cc
blobca73109db7e28183572d96cde04451ffe0f42a7c
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.
5 #include "components/autofill/core/common/autofill_switches.h"
7 namespace autofill {
8 namespace switches {
10 // Forces the password manager to not ignore autocomplete='off' for password
11 // forms.
12 const char kDisableIgnoreAutocompleteOff[] = "do-not-ignore-autocomplete-off";
14 // Disables password generation when we detect that the user is going through
15 // account creation.
16 const char kDisablePasswordGeneration[] = "disable-password-generation";
18 // Enables password generation when we detect that the user is going through
19 // account creation.
20 const char kEnablePasswordGeneration[] = "enable-password-generation";
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.
24 const char kLocalHeuristicsOnlyForPasswordGeneration[] =
25 "local-heuristics-only-for-password-generation";
27 // Annotates forms with Autofill field type predictions.
28 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions";
30 // Secure service URL for Online Wallet service. Used as the base url to escrow
31 // credit card numbers.
32 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url";
34 // Service URL for Online Wallet service. Used as the base url for Online Wallet
35 // API calls.
36 const char kWalletServiceUrl[] = "wallet-service-url";
38 // Use the sandbox Online Wallet service URL (for developer testing).
39 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox";
41 } // namespace switches
42 } // namespace autofill