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

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 unittests. Created 5 years, 9 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 // Returns |true| if a token within |field_suggestion| starts with
17 // |field_contents|; otherwise |false|. By default it performs case insensitive
18 // search. Caller can perform case sensitive search by explicitly passing |true|
19 // as |case_sensitive| parameter to this API.
20 bool HasTokoneStartsWith(const base::string16& field_suggestion,
vabr (Chromium) 2015/03/23 14:17:33 Apart from the typo (Tokone), the name is still a
Pritam Nikam 2015/03/24 11:39:36 Done.
21 const base::string16& field_contents,
22 bool case_sensitive = false);
23
24 // Returns |field_contents|'s offset within the |field_suggestion| on successful
25 // match and compute the selection range's |start| and |end| indices; otherwise
26 // returns |base::string16::npos|.
27 base::string16::size_type ComputeRange(const base::string16& field_suggestion,
28 const base::string16& field_contents,
29 size_t* start,
30 size_t* end);
31
32 } // namespace autofill
33
34 #endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698