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 // Contains constants specific to the Autofill component.
7 #ifndef COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_CONSTANTS_H_
8 #define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_CONSTANTS_H_
10 #include <stddef.h> // For size_t
14 // Help URL for the Autofill dialog.
15 extern const char kHelpURL
[];
17 // The number of fields required by Autofill. Ideally we could send the forms
18 // to Autofill no matter how many fields are in the forms; however, finding the
19 // label for each field is a costly operation and we can't spare the cycles if
20 // it's not necessary.
21 extern const size_t kRequiredAutofillFields
;
23 // Options bitmask values for AutofillHostMsg_ShowPasswordSuggestions IPC
24 enum ShowPasswordSuggestionsOptions
{
25 SHOW_ALL
= 1 << 0 /* show all credentials, not just ones matching username */,
26 IS_PASSWORD_FIELD
= 1 << 1 /* input field is a password field */
29 } // namespace autofill
31 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_CONSTANTS_H_