| 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 1397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1408 | 1408 |
| 1409 // Sent when after the onload handler has been invoked for the document | 1409 // Sent when after the onload handler has been invoked for the document |
| 1410 // in the toplevel frame. | 1410 // in the toplevel frame. |
| 1411 IPC_MESSAGE_ROUTED1(ViewHostMsg_DocumentOnLoadCompletedInMainFrame, | 1411 IPC_MESSAGE_ROUTED1(ViewHostMsg_DocumentOnLoadCompletedInMainFrame, |
| 1412 int32 /* page_id */) | 1412 int32 /* page_id */) |
| 1413 | 1413 |
| 1414 // Sent when the renderer loads a resource from its memory cache. | 1414 // Sent when the renderer loads a resource from its memory cache. |
| 1415 // The security info is non empty if the resource was originally loaded over | 1415 // The security info is non empty if the resource was originally loaded over |
| 1416 // a secure connection. | 1416 // a secure connection. |
| 1417 // Note: May only be sent once per URL per frame per committed load. | 1417 // Note: May only be sent once per URL per frame per committed load. |
| 1418 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidLoadResourceFromMemoryCache, | 1418 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidLoadResourceFromMemoryCache, |
| 1419 GURL /* url */, | 1419 GURL /* url */, |
| 1420 std::string /* security info */) | 1420 std::string /* security info */, |
| 1421 std::string /* http method */, |
| 1422 ResourceType::Type /* resource type */) |
| 1421 | 1423 |
| 1422 // Sent when the renderer displays insecure content in a secure page. | 1424 // Sent when the renderer displays insecure content in a secure page. |
| 1423 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent) | 1425 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent) |
| 1424 | 1426 |
| 1425 // Sent when the renderer runs insecure content in a secure origin. | 1427 // Sent when the renderer runs insecure content in a secure origin. |
| 1426 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidRunInsecureContent, | 1428 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidRunInsecureContent, |
| 1427 std::string /* security_origin */, | 1429 std::string /* security_origin */, |
| 1428 GURL /* target URL */) | 1430 GURL /* target URL */) |
| 1429 | 1431 |
| 1430 // Sent when the renderer starts a provisional load for a frame. | 1432 // Sent when the renderer starts a provisional load for a frame. |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2016 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, | 2018 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, |
| 2017 GURL /* frame's url */, | 2019 GURL /* frame's url */, |
| 2018 std::string /* data buffer */, | 2020 std::string /* data buffer */, |
| 2019 int32 /* complete status */) | 2021 int32 /* complete status */) |
| 2020 | 2022 |
| 2021 // Request updated information about the client firewall traversal policy. | 2023 // Request updated information about the client firewall traversal policy. |
| 2022 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message | 2024 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message |
| 2023 // being sent back. | 2025 // being sent back. |
| 2024 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) | 2026 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) |
| 2025 | 2027 |
| OLD | NEW |