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

Side by Side Diff: components/autofill/core/common/autofill_util.h

Issue 962673004: [Autofill/Autocomplete Feature] Substring matching instead of prefix matching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added comments in autocomplete_history_manager.cc. Created 5 years, 5 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
OLDNEW
(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
13 // |kEnableSuggestionsWithSubstringMatch| is on; otherwise |false|.
14 bool IsFeatureSubstringMatchEnabled();
15
16 // Splits field |suggestion| into tokens, separated by characters from " .,-_@".
17 // Returns true if command line switch |kEnableSuggestionsWithSubstringMatch| is
18 // on and |field_contents| is a prefix of some token.
please use gerrit instead 2015/06/29 22:06:29 "... of a token in |suggestion|."
Pritam Nikam 2015/06/30 15:05:51 Done.
19 bool ContainsTokenThatStartsWith(const base::string16& suggestion,
20 const base::string16& field_contents,
21 bool case_sensitive);
22
23 // Finds if the |field_contents| prefixes any of the |suggestion| token,
please use gerrit instead 2015/06/29 22:06:29 s/token/tokens
Pritam Nikam 2015/06/30 15:05:51 Done.
24 // separated by characters from " .,-_@". Returns the start position of the text
please use gerrit instead 2015/06/29 22:06:29 Remove "from". It's a bit confusing IMHO.
Pritam Nikam 2015/06/30 15:05:51 Done.
25 // selection in the field; base::string16::npos otherwise.
26 size_t GetTextSelectionStart(const base::string16& suggestion,
27 const base::string16& field_contents);
28
29 } // namespace autofill
30
31 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698