From acca2a1fc734142de039f65405ef259737d7a8fc Mon Sep 17 00:00:00 2001 From: "darin@chromium.org" Date: Fri, 16 Oct 2009 03:53:39 +0000 Subject: Move autofill related WebView{Delegate} methods into the WebKit API. This CL also changes a bunch of autofill related wstring values to string16. R=jcampan BUG=24595 TEST=none Review URL: http://codereview.chromium.org/279001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29244 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/render_messages_internal.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'chrome/common') diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index fd2ab49..7408ab8 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -593,7 +593,7 @@ IPC_BEGIN_MESSAGES(View) // suggestions. IPC_MESSAGE_ROUTED3(ViewMsg_QueryFormFieldAutofill_ACK, int /* id of the request message */, - std::vector /* suggestions */, + std::vector /* suggestions */, int /* index of default suggestion */) // Sent by the Browser process to alert a window about whether a blocked @@ -1604,14 +1604,14 @@ IPC_BEGIN_MESSAGES(ViewHost) // 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 " :" | "DIRECT". See also -- cgit v1.1