| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1148 gfx::NativeViewId /* window */, | 1148 gfx::NativeViewId /* window */, |
| 1149 gfx::Rect /* Out: Window location */) | 1149 gfx::Rect /* Out: Window location */) |
| 1150 | 1150 |
| 1151 // Queries the browser for suggestion for autofill in a form input field. | 1151 // Queries the browser for suggestion for autofill in a form input field. |
| 1152 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill, | 1152 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill, |
| 1153 std::wstring /* field name */, | 1153 std::wstring /* field name */, |
| 1154 std::wstring /* user entered text */, | 1154 std::wstring /* user entered text */, |
| 1155 int64 /* id of the text input field */, | 1155 int64 /* id of the text input field */, |
| 1156 int /* id of this message */) | 1156 int /* id of this message */) |
| 1157 | 1157 |
| 1158 // Instructs the browser to remove the specified autofill-entry from the |
| 1159 // database. |
| 1160 IPC_MESSAGE_ROUTED2(ViewHostMsg_RemoveAutofillEntry, |
| 1161 std::wstring /* field name */, |
| 1162 std::wstring /* value */) |
| 1163 |
| 1158 // Get the list of proxies to use for |url|, as a semicolon delimited list | 1164 // Get the list of proxies to use for |url|, as a semicolon delimited list |
| 1159 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also | 1165 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also |
| 1160 // PluginProcessHostMsg_ResolveProxy which does the same thing. | 1166 // PluginProcessHostMsg_ResolveProxy which does the same thing. |
| 1161 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_ResolveProxy, | 1167 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_ResolveProxy, |
| 1162 GURL /* url */, | 1168 GURL /* url */, |
| 1163 int /* network error */, | 1169 int /* network error */, |
| 1164 std::string /* proxy list */) | 1170 std::string /* proxy list */) |
| 1165 | 1171 |
| 1166 // Request that got sent to browser for creating an audio output stream | 1172 // Request that got sent to browser for creating an audio output stream |
| 1167 IPC_MESSAGE_ROUTED2(ViewHostMsg_CreateAudioStream, | 1173 IPC_MESSAGE_ROUTED2(ViewHostMsg_CreateAudioStream, |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1217 | 1223 |
| 1218 // Wraps an IPC message that's destined to the worker on the renderer->browser | 1224 // Wraps an IPC message that's destined to the worker on the renderer->browser |
| 1219 // hop. | 1225 // hop. |
| 1220 IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker, | 1226 IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker, |
| 1221 IPC::Message /* message */) | 1227 IPC::Message /* message */) |
| 1222 | 1228 |
| 1223 // Notification when new feeds have been discovered on the page. | 1229 // Notification when new feeds have been discovered on the page. |
| 1224 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateFeedList, | 1230 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateFeedList, |
| 1225 ViewHostMsg_UpdateFeedList_Params) | 1231 ViewHostMsg_UpdateFeedList_Params) |
| 1226 IPC_END_MESSAGES(ViewHost) | 1232 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |