diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-16 03:53:39 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-16 03:53:39 +0000 |
commit | acca2a1fc734142de039f65405ef259737d7a8fc (patch) | |
tree | 6275718b90618e1445cb824e615aeca7c21e6956 /chrome/browser/renderer_host/render_view_host.h | |
parent | 923bd8b63206d79cdfb0e5eba5b49e5a6f7eee7d (diff) | |
download | chromium_src-acca2a1fc734142de039f65405ef259737d7a8fc.zip chromium_src-acca2a1fc734142de039f65405ef259737d7a8fc.tar.gz chromium_src-acca2a1fc734142de039f65405ef259737d7a8fc.tar.bz2 |
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
Diffstat (limited to 'chrome/browser/renderer_host/render_view_host.h')
-rw-r--r-- | chrome/browser/renderer_host/render_view_host.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/renderer_host/render_view_host.h b/chrome/browser/renderer_host/render_view_host.h index 218bedc..acb1833 100644 --- a/chrome/browser/renderer_host/render_view_host.h +++ b/chrome/browser/renderer_host/render_view_host.h @@ -394,8 +394,8 @@ class RenderViewHost : public RenderWidgetHost, 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 @@ class RenderViewHost : public RenderWidgetHost, 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); |