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

Unified Diff: components/autofill/ios/browser/autofill_driver_ios.h

Issue 1208133002: [Autofill/Autocomplete Feature] Substring matching instead of prefix matching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added |match_start| usage. Created 5 years, 6 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/ios/browser/autofill_driver_ios.h
diff --git a/components/autofill/ios/browser/autofill_driver_ios.h b/components/autofill/ios/browser/autofill_driver_ios.h
index c2935b3dd33e7d4f5f0ef97917298e6bfdd21729..2179aa792537624678fd670b9156c5c9eda45bf9 100644
--- a/components/autofill/ios/browser/autofill_driver_ios.h
+++ b/components/autofill/ios/browser/autofill_driver_ios.h
@@ -56,8 +56,8 @@ class AutofillDriverIOS : public AutofillDriver,
AutofillManager* autofill_manager() { return &autofill_manager_; }
void RendererShouldFillFieldWithValue(const base::string16& value) override;
- void RendererShouldPreviewFieldWithValue(
- const base::string16& value) override;
+ void RendererShouldPreviewFieldWithValue(const base::string16& value,
+ size_t match_start) override;
void PopupHidden() override;
private:

Powered by Google App Engine
This is Rietveld 408576698