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