| 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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 // Sent when the renderer is loading a frame | 620 // Sent when the renderer is loading a frame |
| 621 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidStartLoading, int32) | 621 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidStartLoading, int32) |
| 622 | 622 |
| 623 // Sent when the renderer is done loading a frame | 623 // Sent when the renderer is done loading a frame |
| 624 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidStopLoading, int32) | 624 IPC_MESSAGE_ROUTED1(ViewHostMsg_DidStopLoading, int32) |
| 625 | 625 |
| 626 // Sent when the renderer loads a resource from its memory cache. | 626 // Sent when the renderer loads a resource from its memory cache. |
| 627 // The security info is non empty if the resource was originally loaded over | 627 // The security info is non empty if the resource was originally loaded over |
| 628 // a secure connection. | 628 // a secure connection. |
| 629 // Note: May only be sent once per URL per frame per committed load. | 629 // Note: May only be sent once per URL per frame per committed load. |
| 630 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidLoadResourceFromMemoryCache, | 630 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidLoadResourceFromMemoryCache, |
| 631 GURL /* url */, | 631 GURL /* url */, |
| 632 std::string /* frame_origin */, |
| 633 std::string /* main_frame_origin */, |
| 632 std::string /* security info */) | 634 std::string /* security info */) |
| 633 | 635 |
| 634 // Sent when the renderer starts a provisional load for a frame. | 636 // Sent when the renderer starts a provisional load for a frame. |
| 635 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidStartProvisionalLoadForFrame, | 637 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidStartProvisionalLoadForFrame, |
| 636 bool /* true if it is the main frame */, | 638 bool /* true if it is the main frame */, |
| 637 GURL /* url */) | 639 GURL /* url */) |
| 638 | 640 |
| 639 // Sent when the renderer fails a provisional load with an error. | 641 // Sent when the renderer fails a provisional load with an error. |
| 640 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidFailProvisionalLoadWithError, | 642 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidFailProvisionalLoadWithError, |
| 641 bool /* true if it is the main frame */, | 643 bool /* true if it is the main frame */, |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1217 | 1219 |
| 1218 // Wraps an IPC message that's destined to the worker on the renderer->browser | 1220 // Wraps an IPC message that's destined to the worker on the renderer->browser |
| 1219 // hop. | 1221 // hop. |
| 1220 IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker, | 1222 IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker, |
| 1221 IPC::Message /* message */) | 1223 IPC::Message /* message */) |
| 1222 | 1224 |
| 1223 // Notification when new feeds have been discovered on the page. | 1225 // Notification when new feeds have been discovered on the page. |
| 1224 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateFeedList, | 1226 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateFeedList, |
| 1225 ViewHostMsg_UpdateFeedList_Params) | 1227 ViewHostMsg_UpdateFeedList_Params) |
| 1226 IPC_END_MESSAGES(ViewHost) | 1228 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |