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

Unified Diff: chrome/browser/renderer_host/render_view_host.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/autofill_manager.cc ('k') | chrome/browser/renderer_host/render_view_host.cc » ('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.h
===================================================================
--- chrome/browser/renderer_host/render_view_host.h (revision 29209)
+++ chrome/browser/renderer_host/render_view_host.h (working copy)
@@ -394,8 +394,8 @@
void PopupNotificationVisibilityChanged(bool visible);
// Called by the AutofillManager when the list of suggestions is ready.
- void AutofillSuggestionsReturned(int request_id,
- const std::vector<std::wstring>& suggestions,
+ void AutofillSuggestionsReturned(int query_id,
+ const std::vector<string16>& suggestions,
int default_suggestion_index);
// Notifies the Renderer that a move or resize of its containing window has
@@ -571,10 +571,10 @@
const webkit_glue::WebApplicationInfo& info);
void OnMsgShouldCloseACK(bool proceed);
void OnQueryFormFieldAutofill(int request_id,
- const std::wstring& field_name,
- const std::wstring& user_text);
- void OnRemoveAutofillEntry(const std::wstring& field_name,
- const std::wstring& value);
+ const string16& field_name,
+ const string16& user_text);
+ void OnRemoveAutofillEntry(const string16& field_name,
+ const string16& value);
void OnShowDesktopNotification(const GURL& source_origin,
const GURL& url, int notification_id);
« no previous file with comments | « chrome/browser/autofill_manager.cc ('k') | chrome/browser/renderer_host/render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698