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

Unified Diff: public/web/WebAutofillClient.h

Issue 214823008: Add transaction detail params to requestAutocomplete(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: sync Created 6 years, 8 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
« no previous file with comments | « public/web/WebAutocompleteParams.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebAutofillClient.h
diff --git a/public/web/WebAutofillClient.h b/public/web/WebAutofillClient.h
index d57d591bb0d9f3a1db227fdacec9ab57c5474907..ac331d1882e7a969ea72086fb924560bc7cd2afa 100644
--- a/public/web/WebAutofillClient.h
+++ b/public/web/WebAutofillClient.h
@@ -31,8 +31,6 @@
#ifndef WebAutofillClient_h
#define WebAutofillClient_h
-#include "WebFrame.h"
-
namespace blink {
class WebFormControlElement;
@@ -40,13 +38,14 @@ class WebFormElement;
class WebInputElement;
class WebKeyboardEvent;
class WebNode;
+struct WebAutocompleteParams;
template <typename T> class WebVector;
class WebAutofillClient {
public:
// Informs the browser an interactive autocomplete has been requested.
- virtual void didRequestAutocomplete(WebLocalFrame*, const WebFormElement&) { }
+ virtual void didRequestAutocomplete(const WebFormElement&, const WebAutocompleteParams&) { }
// These methods are called when the users edits a text-field.
virtual void textFieldDidEndEditing(const WebInputElement&) { }
« no previous file with comments | « public/web/WebAutocompleteParams.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698