Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Side by Side Diff: components/autofill/core/common/autofill_switches.cc

Issue 2704503002: [Autofill] Add Chrome flag that annotates web forms with form and field signatures (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/autofill/core/common/autofill_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "build/build_config.h" 5 #include "build/build_config.h"
6 #include "components/autofill/core/common/autofill_switches.h" 6 #include "components/autofill/core/common/autofill_switches.h"
7 7
8 namespace autofill { 8 namespace autofill {
9 namespace switches { 9 namespace switches {
10 10
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "ignore-autocomplete-off-autofill"; 49 "ignore-autocomplete-off-autofill";
50 50
51 // Removes the requirement that we recieved a ping from the autofill servers 51 // Removes the requirement that we recieved a ping from the autofill servers
52 // and that the user doesn't have the given form blacklisted. Used in testing. 52 // and that the user doesn't have the given form blacklisted. Used in testing.
53 const char kLocalHeuristicsOnlyForPasswordGeneration[] = 53 const char kLocalHeuristicsOnlyForPasswordGeneration[] =
54 "local-heuristics-only-for-password-generation"; 54 "local-heuristics-only-for-password-generation";
55 55
56 // Annotates forms with Autofill field type predictions. 56 // Annotates forms with Autofill field type predictions.
57 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions"; 57 const char kShowAutofillTypePredictions[] = "show-autofill-type-predictions";
58 58
59 // Annotates forms and fields with Autofill signatures.
60 const char kShowAutofillSignatures[] = "show-autofill-signatures";
61
59 // Use the sandbox Online Wallet service URL (for developer testing). 62 // Use the sandbox Online Wallet service URL (for developer testing).
60 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox"; 63 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox";
61 64
62 #if defined(OS_ANDROID) 65 #if defined(OS_ANDROID)
63 // Disables showing suggestions in a keyboard accessory view. 66 // Disables showing suggestions in a keyboard accessory view.
64 const char kDisableAccessorySuggestionView[] = 67 const char kDisableAccessorySuggestionView[] =
65 "disable-autofill-keyboard-accessory-view"; 68 "disable-autofill-keyboard-accessory-view";
66 69
67 // Enables showing suggestions in a keyboard accessory view. 70 // Enables showing suggestions in a keyboard accessory view.
68 const char kEnableAccessorySuggestionView[] = 71 const char kEnableAccessorySuggestionView[] =
69 "enable-autofill-keyboard-accessory-view"; 72 "enable-autofill-keyboard-accessory-view";
70 #endif // defined(OS_ANDROID) 73 #endif // defined(OS_ANDROID)
71 74
72 } // namespace switches 75 } // namespace switches
73 } // namespace autofill 76 } // namespace autofill
OLDNEW
« no previous file with comments | « components/autofill/core/common/autofill_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698