| OLD | NEW |
| (Empty) |
| 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 #ifndef COMPONENTS_AUTOFILL_CORE_COMMON_PASSWORD_AUTOFILL_UTIL_H_ | |
| 6 #define COMPONENTS_AUTOFILL_CORE_COMMON_PASSWORD_AUTOFILL_UTIL_H_ | |
| 7 | |
| 8 namespace autofill { | |
| 9 | |
| 10 // Returns true if the user has specified the flag to ignore autocomplete='off' | |
| 11 // for password fields in the password manager. | |
| 12 bool ShouldIgnoreAutocompleteOffForPasswordFields(); | |
| 13 | |
| 14 } // namespace autofill | |
| 15 | |
| 16 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_PASSWORD_AUTOFILL_UTIL_H_ | |
| OLD | NEW |