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

Unified Diff: chrome/browser/renderer_host/render_view_host_delegate.h

Issue 279001: Move autofill related WebView{Delegate} methods into the WebKit API.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 | « chrome/browser/renderer_host/render_view_host.cc ('k') | chrome/browser/webdata/web_data_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/render_view_host_delegate.h
===================================================================
--- chrome/browser/renderer_host/render_view_host_delegate.h (revision 29209)
+++ chrome/browser/renderer_host/render_view_host_delegate.h (working copy)
@@ -353,14 +353,14 @@
// retrieves the calling RenderViewHost and then passes the vector of
// suggestions to RenderViewHost::AutofillSuggestionsReturned.
// Return true to indicate that AutofillSuggestionsReturned will be called.
- virtual bool GetAutofillSuggestions(int request_id,
- const std::wstring& field_name,
- const std::wstring& user_text) = 0;
+ virtual bool GetAutofillSuggestions(int query_id,
+ const string16& field_name,
+ const string16& user_text) = 0;
// Called when the user has indicated that she wants to remove the specified
// autofill suggestion from the database.
- virtual void RemoveAutofillEntry(const std::wstring& field_name,
- const std::wstring& value) = 0;
+ virtual void RemoveAutofillEntry(const string16& field_name,
+ const string16& value) = 0;
};
// ---------------------------------------------------------------------------
« no previous file with comments | « chrome/browser/renderer_host/render_view_host.cc ('k') | chrome/browser/webdata/web_data_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698