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

Unified Diff: chrome/common/render_messages_internal.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/webdata/web_database_unittest.cc ('k') | chrome/renderer/print_web_view_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages_internal.h
===================================================================
--- chrome/common/render_messages_internal.h (revision 29209)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -593,7 +593,7 @@
// suggestions.
IPC_MESSAGE_ROUTED3(ViewMsg_QueryFormFieldAutofill_ACK,
int /* id of the request message */,
- std::vector<std::wstring> /* suggestions */,
+ std::vector<string16> /* suggestions */,
int /* index of default suggestion */)
// Sent by the Browser process to alert a window about whether a blocked
@@ -1604,14 +1604,14 @@
// Queries the browser for suggestion for autofill in a form input field.
IPC_MESSAGE_ROUTED3(ViewHostMsg_QueryFormFieldAutofill,
int /* id of this message */,
- std::wstring /* field name */,
- std::wstring /* user entered text */)
+ string16 /* field name */,
+ string16 /* user entered text */)
// Instructs the browser to remove the specified autofill-entry from the
// database.
IPC_MESSAGE_ROUTED2(ViewHostMsg_RemoveAutofillEntry,
- std::wstring /* field name */,
- std::wstring /* value */)
+ string16 /* field name */,
+ string16 /* value */)
// Get the list of proxies to use for |url|, as a semicolon delimited list
// of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also
« no previous file with comments | « chrome/browser/webdata/web_database_unittest.cc ('k') | chrome/renderer/print_web_view_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698