Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / components / autofill / core / common / autofill_switches.cc
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
7 namespace autofill {
8 namespace switches {
9
10 // Disables password generation when we detect that the user is going through
11 // account creation.
12 const char kDisablePasswordGeneration[]     = "disable-password-generation";
13
14 // Enables password generation when we detect that the user is going through
15 // account creation.
16 const char kEnablePasswordGeneration[]      = "enable-password-generation";
17
18 // Ignores autocomplete="off" for Autofill data (profiles + credit cards).
19 const char kIgnoreAutocompleteOffForAutofill[] =
20     "ignore-autocomplete-off-autofill";
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.
24 const char kLocalHeuristicsOnlyForPasswordGeneration[] =
25     "local-heuristics-only-for-password-generation";
26
27 // Annotates forms with Autofill field type predictions.
28 const 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.
32 const 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.
36 const char kWalletServiceUrl[]              = "wallet-service-url";
37
38 // Use the sandbox Online Wallet service URL (for developer testing).
39 const char kWalletServiceUseSandbox[]       = "wallet-service-use-sandbox";
40
41 }  // namespace switches
42 }  // namespace autofill