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

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 651002: AutoFill forms. We do this by responding to a message from WebKit which send... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/form_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This header is meant to be included in multiple passes, hence no traditional 5 // This header is meant to be included in multiple passes, hence no traditional
6 // header guard. 6 // header guard.
7 // See ipc_message_macros.h for explanation of the macros and passes. 7 // See ipc_message_macros.h for explanation of the macros and passes.
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 std::vector<string16> /* labels */, 620 std::vector<string16> /* labels */,
621 int /* index of default suggestion */) 621 int /* index of default suggestion */)
622 622
623 // Reply to the ViewHostMsg_QueryFormFieldAutofill message with the 623 // Reply to the ViewHostMsg_QueryFormFieldAutofill message with the
624 // autocomplete suggestions. 624 // autocomplete suggestions.
625 IPC_MESSAGE_ROUTED3(ViewMsg_AutocompleteSuggestionsReturned, 625 IPC_MESSAGE_ROUTED3(ViewMsg_AutocompleteSuggestionsReturned,
626 int /* id of the request message */, 626 int /* id of the request message */,
627 std::vector<string16> /* suggestions */, 627 std::vector<string16> /* suggestions */,
628 int /* index of default suggestion */) 628 int /* index of default suggestion */)
629 629
630 // Reply to the ViewHostMsg_FillAutoFillFormData message with the
631 // AutoFill form data.
632 IPC_MESSAGE_ROUTED2(ViewMsg_AutoFillFormDataFilled,
633 int /* id of the request message */,
634 FormData /* form data */)
635
630 // Sent by the Browser process to alert a window about whether a blocked 636 // Sent by the Browser process to alert a window about whether a blocked
631 // popup notification is visible. The renderer assumes every new window is a 637 // popup notification is visible. The renderer assumes every new window is a
632 // blocked popup until notified otherwise. 638 // blocked popup until notified otherwise.
633 IPC_MESSAGE_ROUTED1(ViewMsg_PopupNotificationVisibilityChanged, 639 IPC_MESSAGE_ROUTED1(ViewMsg_PopupNotificationVisibilityChanged,
634 bool /* Whether it is visible */) 640 bool /* Whether it is visible */)
635 641
636 // Sent by AudioRendererHost to renderer to request an audio packet. 642 // Sent by AudioRendererHost to renderer to request an audio packet.
637 IPC_MESSAGE_ROUTED3(ViewMsg_RequestAudioPacket, 643 IPC_MESSAGE_ROUTED3(ViewMsg_RequestAudioPacket,
638 int /* stream id */, 644 int /* stream id */,
639 uint32 /* bytes in buffer */, 645 uint32 /* bytes in buffer */,
(...skipping 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after
1727 // Important for Mac OS X, but not Win or Linux. 1733 // Important for Mac OS X, but not Win or Linux.
1728 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetRootWindowResizerRect, 1734 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetRootWindowResizerRect,
1729 gfx::NativeViewId /* window */, 1735 gfx::NativeViewId /* window */,
1730 gfx::Rect /* Out: Window location */) 1736 gfx::Rect /* Out: Window location */)
1731 1737
1732 // Queries the browser for suggestion for autofill in a form input field. 1738 // Queries the browser for suggestion for autofill in a form input field.
1733 IPC_MESSAGE_ROUTED2(ViewHostMsg_QueryFormFieldAutofill, 1739 IPC_MESSAGE_ROUTED2(ViewHostMsg_QueryFormFieldAutofill,
1734 int /* id of this message */, 1740 int /* id of this message */,
1735 webkit_glue::FormField /* the form field */) 1741 webkit_glue::FormField /* the form field */)
1736 1742
1743 // Instructs the browser to fill in the values for a form using AutoFill
1744 // profile data.
1745 IPC_MESSAGE_ROUTED4(ViewHostMsg_FillAutoFillFormData,
1746 int /* id of this message */,
1747 FormData /* the form */,
1748 string16 /* profile name */,
1749 string16 /* profile label */)
1750
1737 // Instructs the browser to remove the specified autofill-entry from the 1751 // Instructs the browser to remove the specified autofill-entry from the
1738 // database. 1752 // database.
1739 IPC_MESSAGE_ROUTED2(ViewHostMsg_RemoveAutofillEntry, 1753 IPC_MESSAGE_ROUTED2(ViewHostMsg_RemoveAutofillEntry,
1740 string16 /* field name */, 1754 string16 /* field name */,
1741 string16 /* value */) 1755 string16 /* value */)
1742 1756
1743 // Get the list of proxies to use for |url|, as a semicolon delimited list 1757 // Get the list of proxies to use for |url|, as a semicolon delimited list
1744 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also 1758 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also
1745 // PluginProcessHostMsg_ResolveProxy which does the same thing. 1759 // PluginProcessHostMsg_ResolveProxy which does the same thing.
1746 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_ResolveProxy, 1760 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_ResolveProxy,
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
2122 ViewHostMsg_SpellChecker_PlatformFillSuggestionList, 2136 ViewHostMsg_SpellChecker_PlatformFillSuggestionList,
2123 string16 /* word */, 2137 string16 /* word */,
2124 std::vector<string16> /* suggestions */) 2138 std::vector<string16> /* suggestions */)
2125 2139
2126 // Request for text translation. 2140 // Request for text translation.
2127 // Used when translating a page from one language to another. 2141 // Used when translating a page from one language to another.
2128 IPC_MESSAGE_CONTROL1(ViewHostMsg_TranslateText, 2142 IPC_MESSAGE_CONTROL1(ViewHostMsg_TranslateText,
2129 ViewHostMsg_TranslateTextParam) 2143 ViewHostMsg_TranslateTextParam)
2130 2144
2131 IPC_END_MESSAGES(ViewHost) 2145 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/form_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698