OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/memory/shared_memory.h" | 8 #include "base/memory/shared_memory.h" |
9 #include "base/process/process.h" | 9 #include "base/process/process.h" |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
(...skipping 1121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1132 | 1132 |
1133 // Sent when the renderer loads a resource from its memory cache. | 1133 // Sent when the renderer loads a resource from its memory cache. |
1134 // The security info is non empty if the resource was originally loaded over | 1134 // The security info is non empty if the resource was originally loaded over |
1135 // a secure connection. | 1135 // a secure connection. |
1136 // Note: May only be sent once per URL per frame per committed load. | 1136 // Note: May only be sent once per URL per frame per committed load. |
1137 IPC_MESSAGE_ROUTED5(ViewHostMsg_DidLoadResourceFromMemoryCache, | 1137 IPC_MESSAGE_ROUTED5(ViewHostMsg_DidLoadResourceFromMemoryCache, |
1138 GURL /* url */, | 1138 GURL /* url */, |
1139 std::string /* security info */, | 1139 std::string /* security info */, |
1140 std::string /* http method */, | 1140 std::string /* http method */, |
1141 std::string /* mime type */, | 1141 std::string /* mime type */, |
1142 ResourceType::Type /* resource type */) | 1142 content::ResourceType::Type /* resource type */) |
1143 | 1143 |
1144 // Sent when the renderer displays insecure content in a secure page. | 1144 // Sent when the renderer displays insecure content in a secure page. |
1145 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent) | 1145 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent) |
1146 | 1146 |
1147 // Sent when the renderer runs insecure content in a secure origin. | 1147 // Sent when the renderer runs insecure content in a secure origin. |
1148 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidRunInsecureContent, | 1148 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidRunInsecureContent, |
1149 std::string /* security_origin */, | 1149 std::string /* security_origin */, |
1150 GURL /* target URL */) | 1150 GURL /* target URL */) |
1151 | 1151 |
1152 // Sent to update part of the view. In response to this message, the host | 1152 // Sent to update part of the view. In response to this message, the host |
(...skipping 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1697 // Since the browser keeps handles to the allocated transport DIBs, this | 1697 // Since the browser keeps handles to the allocated transport DIBs, this |
1698 // message is sent to tell the browser that it may release them when the | 1698 // message is sent to tell the browser that it may release them when the |
1699 // renderer is finished with them. | 1699 // renderer is finished with them. |
1700 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 1700 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
1701 TransportDIB::Id /* DIB id */) | 1701 TransportDIB::Id /* DIB id */) |
1702 #endif | 1702 #endif |
1703 | 1703 |
1704 // Adding a new message? Stick to the sort order above: first platform | 1704 // Adding a new message? Stick to the sort order above: first platform |
1705 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1705 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
1706 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1706 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
OLD | NEW |