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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc

Issue 148413002: Add "previewing on hover" support for single-field autocomplete input (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 11 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: chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
index db0ef1073aeb0762c2bab5f090ec49d47f918635..fe77d742a3341c725eeee9386b873344e4a56fec 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc
@@ -2154,6 +2154,11 @@ void AutofillDialogControllerImpl::DidSelectSuggestion(int identifier) {
// TODO(estade): implement.
}
+void AutofillDialogControllerImpl::DidSelectAutocompleteSuggestion(
+ const base::string16& value) {
+ // TODO: inline with DidSelectSuggestion() implementation.
+}
+
void AutofillDialogControllerImpl::DidAcceptSuggestion(
const base::string16& value,
int identifier) {
@@ -2233,6 +2238,10 @@ void AutofillDialogControllerImpl::ClearPreviewedForm() {
// TODO(estade): implement.
}
+void AutofillDialogControllerImpl::ClearAutocompletePreviewedField() {
+ // TODO: inline with ClearPreviewedForm() implementation.
Evan Stade 2014/01/27 17:43:17 TODOs need to have your name on them. That said, t
ziran.sun 2014/01/27 18:18:06 Done.
+}
+
////////////////////////////////////////////////////////////////////////////////
// content::NotificationObserver implementation.

Powered by Google App Engine
This is Rietveld 408576698