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

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

Issue 3071003: AutoFill: Display a right-aligned generic CC icon in the suggestions popup for (Closed)
Patch Set: Rebase. Created 10 years, 4 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
« no previous file with comments | « chrome/browser/renderer_host/render_view_host.cc ('k') | chrome/renderer/autofill_helper.h » ('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 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 int /* log_level */, 634 int /* log_level */,
635 std::string /* message */) 635 std::string /* message */)
636 636
637 // Notifies the renderer of the fact that AppCache access was blocked. 637 // Notifies the renderer of the fact that AppCache access was blocked.
638 IPC_MESSAGE_CONTROL2(AppCacheMsg_ContentBlocked, 638 IPC_MESSAGE_CONTROL2(AppCacheMsg_ContentBlocked,
639 int /* host_id */, 639 int /* host_id */,
640 GURL /* manifest_url */) 640 GURL /* manifest_url */)
641 641
642 // Reply to the ViewHostMsg_QueryFormFieldAutoFill message with the 642 // Reply to the ViewHostMsg_QueryFormFieldAutoFill message with the
643 // AutoFill suggestions. 643 // AutoFill suggestions.
644 IPC_MESSAGE_ROUTED4(ViewMsg_AutoFillSuggestionsReturned, 644 IPC_MESSAGE_ROUTED5(ViewMsg_AutoFillSuggestionsReturned,
645 int /* id of the request message */, 645 int /* id of the request message */,
646 std::vector<string16> /* names */, 646 std::vector<string16> /* names */,
647 std::vector<string16> /* labels */, 647 std::vector<string16> /* labels */,
648 std::vector<string16> /* icons */,
648 std::vector<int> /* unique_ids */) 649 std::vector<int> /* unique_ids */)
649 650
650 // Reply to the ViewHostMsg_FillAutoFillFormData message with the 651 // Reply to the ViewHostMsg_FillAutoFillFormData message with the
651 // AutoFill form data. 652 // AutoFill form data.
652 IPC_MESSAGE_ROUTED2(ViewMsg_AutoFillFormDataFilled, 653 IPC_MESSAGE_ROUTED2(ViewMsg_AutoFillFormDataFilled,
653 int /* id of the request message */, 654 int /* id of the request message */,
654 webkit_glue::FormData /* form data */) 655 webkit_glue::FormData /* form data */)
655 656
656 // Sent by the Browser process to alert a window about whether a it should 657 // Sent by the Browser process to alert a window about whether a it should
657 // allow a scripted window.close(). The renderer assumes every new window is a 658 // allow a scripted window.close(). The renderer assumes every new window is a
(...skipping 1871 matching lines...) Expand 10 before | Expand all | Expand 10 after
2529 // Send the tree of accessibility data to the browser, where it's cached 2530 // Send the tree of accessibility data to the browser, where it's cached
2530 // in order to respond to OS accessibility queries immediately. 2531 // in order to respond to OS accessibility queries immediately.
2531 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, 2532 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree,
2532 webkit_glue::WebAccessibility) 2533 webkit_glue::WebAccessibility)
2533 2534
2534 // Notifies the TabContents that the content being displayed is PDF. 2535 // Notifies the TabContents that the content being displayed is PDF.
2535 // This allows the browser to handle things such as zooming differently. 2536 // This allows the browser to handle things such as zooming differently.
2536 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent) 2537 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent)
2537 2538
2538 IPC_END_MESSAGES(ViewHost) 2539 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/render_view_host.cc ('k') | chrome/renderer/autofill_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698