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/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 1650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1661 | 1661 |
1662 // Sent when the renderer displays insecure content in a secure page. | 1662 // Sent when the renderer displays insecure content in a secure page. |
1663 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent) | 1663 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent) |
1664 | 1664 |
1665 // Sent when the renderer runs insecure content in a secure origin. | 1665 // Sent when the renderer runs insecure content in a secure origin. |
1666 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidRunInsecureContent, | 1666 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidRunInsecureContent, |
1667 std::string /* security_origin */, | 1667 std::string /* security_origin */, |
1668 GURL /* target URL */) | 1668 GURL /* target URL */) |
1669 | 1669 |
1670 // Sent when the renderer starts a provisional load for a frame. | 1670 // Sent when the renderer starts a provisional load for a frame. |
1671 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidStartProvisionalLoadForFrame, | 1671 IPC_MESSAGE_ROUTED5(ViewHostMsg_DidStartProvisionalLoadForFrame, |
1672 int64 /* frame_id */, | 1672 int64 /* frame_id */, |
| 1673 int64 /* parent_frame_id */, |
1673 bool /* true if it is the main frame */, | 1674 bool /* true if it is the main frame */, |
1674 GURL /* opener url if present, else empty */, | 1675 GURL /* opener url if present, else empty */, |
1675 GURL /* url */) | 1676 GURL /* url */) |
1676 | 1677 |
1677 IPC_MESSAGE_ROUTED5(ViewHostMsg_DidFailLoadWithError, | 1678 IPC_MESSAGE_ROUTED5(ViewHostMsg_DidFailLoadWithError, |
1678 int64 /* frame_id */, | 1679 int64 /* frame_id */, |
1679 GURL /* validated_url */, | 1680 GURL /* validated_url */, |
1680 bool /* is_main_frame */, | 1681 bool /* is_main_frame */, |
1681 int /* error_code */, | 1682 int /* error_code */, |
1682 string16 /* error_description */) | 1683 string16 /* error_description */) |
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2383 // marker, in similarly normalized coords (or an empty rect if there isn't one). | 2384 // marker, in similarly normalized coords (or an empty rect if there isn't one). |
2384 IPC_MESSAGE_ROUTED3(ViewHostMsg_FindMatchRects_Reply, | 2385 IPC_MESSAGE_ROUTED3(ViewHostMsg_FindMatchRects_Reply, |
2385 int /* version */, | 2386 int /* version */, |
2386 std::vector<gfx::RectF> /* rects */, | 2387 std::vector<gfx::RectF> /* rects */, |
2387 gfx::RectF /* active_rect */) | 2388 gfx::RectF /* active_rect */) |
2388 | 2389 |
2389 // Start an android intent with the given URI. | 2390 // Start an android intent with the given URI. |
2390 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, | 2391 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, |
2391 GURL /* content_url */) | 2392 GURL /* content_url */) |
2392 #endif | 2393 #endif |
OLD | NEW |