Chromium Code Reviews

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

Issue 63093: Refactoring; switch the |filter| parameter into something that is more amenab... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « chrome/browser/views/user_data_dir_dialog.cc ('k') | chrome/common/temp_scaffolding_stubs.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 910 matching lines...)
921 // Send the tooltip text for the current mouse position to the browser. 921 // Send the tooltip text for the current mouse position to the browser.
922 IPC_MESSAGE_ROUTED1(ViewHostMsg_SetTooltipText, 922 IPC_MESSAGE_ROUTED1(ViewHostMsg_SetTooltipText,
923 std::wstring /* tooltip text string */) 923 std::wstring /* tooltip text string */)
924 924
925 // Notification that the text selection has changed. 925 // Notification that the text selection has changed.
926 IPC_MESSAGE_ROUTED1(ViewHostMsg_SelectionChanged, 926 IPC_MESSAGE_ROUTED1(ViewHostMsg_SelectionChanged,
927 std::string /* currently selected text */) 927 std::string /* currently selected text */)
928 928
929 // Asks the browser to display the file chooser. The result is returned in a 929 // Asks the browser to display the file chooser. The result is returned in a
930 // ViewHost_RunFileChooserResponse message. 930 // ViewHost_RunFileChooserResponse message.
931 IPC_MESSAGE_ROUTED4(ViewHostMsg_RunFileChooser, 931 IPC_MESSAGE_ROUTED3(ViewHostMsg_RunFileChooser,
932 bool /* multiple_files */, 932 bool /* multiple_files */,
933 std::wstring /* title */, 933 string16 /* title */,
934 std::wstring /* Default file name */, 934 FilePath /* Default file name */)
935 std::wstring /* filter */)
936 935
937 // Notification that password forms have been seen that are candidates for 936 // Notification that password forms have been seen that are candidates for
938 // filling/submitting by the password manager 937 // filling/submitting by the password manager
939 IPC_MESSAGE_ROUTED1(ViewHostMsg_PasswordFormsSeen, 938 IPC_MESSAGE_ROUTED1(ViewHostMsg_PasswordFormsSeen,
940 std::vector<PasswordForm> /* forms */) 939 std::vector<PasswordForm> /* forms */)
941 940
942 // Notification that a form has been submitted. The user hit the button. 941 // Notification that a form has been submitted. The user hit the button.
943 IPC_MESSAGE_ROUTED1(ViewHostMsg_AutofillFormSubmitted, 942 IPC_MESSAGE_ROUTED1(ViewHostMsg_AutofillFormSubmitted,
944 AutofillForm /* form */) 943 AutofillForm /* form */)
945 944
(...skipping 383 matching lines...)
1329 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_OpenChannelToExtension, 1328 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_OpenChannelToExtension,
1330 std::string /* extension_id */, 1329 std::string /* extension_id */,
1331 int /* port_id */) 1330 int /* port_id */)
1332 1331
1333 // Send a message to an extension process. The handle is the value returned 1332 // Send a message to an extension process. The handle is the value returned
1334 // by ViewHostMsg_OpenChannelToExtension. 1333 // by ViewHostMsg_OpenChannelToExtension.
1335 IPC_MESSAGE_CONTROL2(ViewHostMsg_ExtensionPostMessage, 1334 IPC_MESSAGE_CONTROL2(ViewHostMsg_ExtensionPostMessage,
1336 int /* port_id */, 1335 int /* port_id */,
1337 std::string /* message */) 1336 std::string /* message */)
1338 IPC_END_MESSAGES(ViewHost) 1337 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/browser/views/user_data_dir_dialog.cc ('k') | chrome/common/temp_scaffolding_stubs.h » ('j') | no next file with comments »

Powered by Google App Engine