| Index: chrome/browser/renderer_host/render_view_host.cc
|
| ===================================================================
|
| --- chrome/browser/renderer_host/render_view_host.cc (revision 11686)
|
| +++ chrome/browser/renderer_host/render_view_host.cc (working copy)
|
| @@ -761,6 +761,8 @@
|
| OnUnloadListenerChanged);
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_QueryFormFieldAutofill,
|
| OnQueryFormFieldAutofill)
|
| + IPC_MESSAGE_HANDLER(ViewHostMsg_RemoveAutofillEntry,
|
| + OnRemoveAutofillEntry)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateFeedList, OnMsgUpdateFeedList)
|
| // Have the super handle all other messages.
|
| IPC_MESSAGE_UNHANDLED(RenderWidgetHost::OnMessageReceived(msg))
|
| @@ -1301,6 +1303,11 @@
|
| delegate_->GetAutofillSuggestions(field_name, user_text, node_id, request_id);
|
| }
|
|
|
| +void RenderViewHost::OnRemoveAutofillEntry(const std::wstring& field_name,
|
| + const std::wstring& value) {
|
| + delegate_->RemoveAutofillEntry(field_name, value);
|
| +}
|
| +
|
| void RenderViewHost::AutofillSuggestionsReturned(
|
| const std::vector<std::wstring>& suggestions,
|
| int64 node_id, int request_id, int default_suggestion_index) {
|
|
|