Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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_AUTOFILL_UTIL_H_ | |
| 6 #define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_UTIL_H_ | |
| 7 | |
| 8 #include "base/strings/string16.h" | |
| 9 | |
| 10 namespace autofill { | |
| 11 | |
| 12 // Returns true when command line switch |kEnableSuggestionsWithSubstringMatch| | |
| 13 // is on. | |
| 14 bool IsFeatureSubstringMatchEnabled(); | |
| 15 | |
| 16 // Returns true if the |field_contents| prefixes any of the |suggestion| tokens | |
|
vabr (Chromium)
2015/07/09 06:17:52
The comment is not correct. This is not about pref
Pritam Nikam
2015/07/10 16:58:46
Done.
| |
| 17 // separated by characters " .,-_@". | |
| 18 bool ContainsTokenThatStartsWith(const base::string16& suggestion, | |
| 19 const base::string16& field_contents, | |
| 20 bool case_sensitive); | |
| 21 | |
| 22 // Finds if the |field_contents| prefixes any of the |suggestion| tokens, | |
| 23 // separated by characters " .,-_@". Returns the start position of the text | |
|
vabr (Chromium)
2015/07/09 06:17:52
nit: Please clarify:
Returns the start position ->
Pritam Nikam
2015/07/10 16:58:46
Done.
| |
| 24 // selection in the field; base::string16::npos otherwise. "preview-on-hover" | |
| 25 // feature is one such use case where |field_contents| may not match | |
| 26 // |suggestion|. | |
| 27 size_t GetTextSelectionStart(const base::string16& suggestion, | |
| 28 const base::string16& field_contents, | |
| 29 bool case_sensitive); | |
| 30 | |
| 31 } // namespace autofill | |
| 32 | |
| 33 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_UTIL_H_ | |
| OLD | NEW |