OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "base/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/common_param_traits.h" | 10 #include "content/common/common_param_traits.h" |
(...skipping 941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
952 IPC_MESSAGE_ROUTED4(ViewMsg_ScriptEvalRequest, | 952 IPC_MESSAGE_ROUTED4(ViewMsg_ScriptEvalRequest, |
953 string16, /* frame_xpath */ | 953 string16, /* frame_xpath */ |
954 string16, /* jscript_url */ | 954 string16, /* jscript_url */ |
955 int, /* ID */ | 955 int, /* ID */ |
956 bool /* If true, result is sent back. */) | 956 bool /* If true, result is sent back. */) |
957 | 957 |
958 // Request for the renderer to evaluate an xpath to a frame and insert css | 958 // Request for the renderer to evaluate an xpath to a frame and insert css |
959 // into that frame's document. See ViewMsg_ScriptEvalRequest for details on | 959 // into that frame's document. See ViewMsg_ScriptEvalRequest for details on |
960 // allowed xpath expressions. | 960 // allowed xpath expressions. |
961 IPC_MESSAGE_ROUTED2(ViewMsg_CSSInsertRequest, | 961 IPC_MESSAGE_ROUTED2(ViewMsg_CSSInsertRequest, |
962 std::wstring, /* frame_xpath */ | 962 string16, /* frame_xpath */ |
963 std::string /* css string */) | 963 std::string /* css string */) |
964 | 964 |
965 // External popup menus. | 965 // External popup menus. |
966 IPC_MESSAGE_ROUTED1(ViewMsg_SelectPopupMenuItem, | 966 IPC_MESSAGE_ROUTED1(ViewMsg_SelectPopupMenuItem, |
967 int /* selected index, -1 means no selection */) | 967 int /* selected index, -1 means no selection */) |
968 | 968 |
969 // Change the zoom level for the current main frame. If the level actually | 969 // Change the zoom level for the current main frame. If the level actually |
970 // changes, a ViewHostMsg_DidZoomURL message will be sent back to the browser | 970 // changes, a ViewHostMsg_DidZoomURL message will be sent back to the browser |
971 // telling it what url got zoomed and what its current zoom level is. | 971 // telling it what url got zoomed and what its current zoom level is. |
972 IPC_MESSAGE_ROUTED1(ViewMsg_Zoom, | 972 IPC_MESSAGE_ROUTED1(ViewMsg_Zoom, |
(...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2021 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, | 2021 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, |
2022 GURL /* frame's url */, | 2022 GURL /* frame's url */, |
2023 std::string /* data buffer */, | 2023 std::string /* data buffer */, |
2024 int32 /* complete status */) | 2024 int32 /* complete status */) |
2025 | 2025 |
2026 // Request updated information about the client firewall traversal policy. | 2026 // Request updated information about the client firewall traversal policy. |
2027 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message | 2027 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message |
2028 // being sent back. | 2028 // being sent back. |
2029 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) | 2029 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) |
2030 | 2030 |
OLD | NEW |