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 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1095 gfx::NativeViewId /* window */, | 1095 gfx::NativeViewId /* window */, |
1096 gfx::Rect /* Out: Window location */) | 1096 gfx::Rect /* Out: Window location */) |
1097 | 1097 |
1098 // Queries the browser for suggestion for autofill in a form input field. | 1098 // Queries the browser for suggestion for autofill in a form input field. |
1099 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill, | 1099 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill, |
1100 std::wstring /* field name */, | 1100 std::wstring /* field name */, |
1101 std::wstring /* user entered text */, | 1101 std::wstring /* user entered text */, |
1102 int64 /* id of the text input field */, | 1102 int64 /* id of the text input field */, |
1103 int /* id of this message */) | 1103 int /* id of this message */) |
1104 | 1104 |
| 1105 // Get the list of proxies to use for |url|, as a semicolon delimited list |
| 1106 // of "<TYPE> <HOST>:<PORT>" | "DIRECT". See also |
| 1107 // PluginProcessHostMsg_ResolveProxy which does the same thing. |
| 1108 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_ResolveProxy, |
| 1109 GURL /* url */, |
| 1110 int /* network error */, |
| 1111 std::string /* proxy list */) |
| 1112 |
1105 IPC_END_MESSAGES(ViewHost) | 1113 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |