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

Unified 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: Addresses Vaclav's & Evan's Inputs. 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 side-by-side diff with in-line comments
Download patch
Index: components/autofill/core/common/autofill_util.h
diff --git a/components/autofill/core/common/autofill_util.h b/components/autofill/core/common/autofill_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..5454cdcd0b5df77deee04185aade747f57e3a958
--- /dev/null
+++ b/components/autofill/core/common/autofill_util.h
@@ -0,0 +1,35 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_UTIL_H_
+#define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_UTIL_H_
+
+#include "base/strings/string16.h"
+
+namespace autofill {
+
+// Returns |true| when command line switch
+// |kEnableSuggestionsWithSubstringMatch| is on; otherwise |false|.
+bool IsFeatureSubstringMatchEnabled();
+
+// Returns |true| if a substring token within |field_suggestion| begins with
vabr (Chromium) 2015/03/24 13:32:28 Not clear what a "substring token" is. What about
Pritam Nikam 2015/03/25 14:25:26 Done.
+// |field_contents|; otherwise |false|. The set of delimiters (the characters
+// that separate tokens) are ' ', '.', ',', '-', '_' and '@'. By default it
+// performs case insensitive search. Caller can perform case sensitive search by
+// explicitly passing |true| as |case_sensitive| parameter to this API.
+bool HasTokenStartsWith(const base::string16& field_suggestion,
vabr (Chromium) 2015/03/24 13:32:28 The name still sounds hard to understand. What abo
Pritam Nikam 2015/03/25 14:25:26 Done.
+ const base::string16& field_contents,
+ bool case_sensitive = false);
vabr (Chromium) 2015/03/24 13:32:28 optional: By changing the bool to an enum with wel
vabr (Chromium) 2015/03/24 13:32:28 The style guide forbids default arguments in this
Pritam Nikam 2015/03/25 14:25:26 Done. Added enum instead. enum CaseSensitivity {
Pritam Nikam 2015/03/25 14:25:26 Done.
+
+// Returns |field_contents|'s offset within the |field_suggestion| on successful
+// match and compute the selection range's |start| and |end| indices; otherwise
+// returns |base::string16::npos|.
+base::string16::size_type ComputeRange(const base::string16& field_suggestion,
+ const base::string16& field_contents,
+ size_t* start,
+ size_t* end);
+
+} // namespace autofill
+
+#endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698