OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 interacting with frames. | 5 // IPC messages for interacting with frames. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1471 // Sent when the renderer displays insecure content in a secure origin. | 1471 // Sent when the renderer displays insecure content in a secure origin. |
1472 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidDisplayInsecureContent) | 1472 IPC_MESSAGE_ROUTED0(FrameHostMsg_DidDisplayInsecureContent) |
1473 | 1473 |
1474 // Sent when the renderer runs insecure content in a secure origin. | 1474 // Sent when the renderer runs insecure content in a secure origin. |
1475 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidRunInsecureContent, | 1475 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidRunInsecureContent, |
1476 GURL /* security_origin */, | 1476 GURL /* security_origin */, |
1477 GURL /* target URL */) | 1477 GURL /* target URL */) |
1478 | 1478 |
1479 // Sent when the renderer displays content that was loaded with | 1479 // Sent when the renderer displays content that was loaded with |
1480 // certificate errors. | 1480 // certificate errors. |
1481 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidDisplayContentWithCertificateErrors, | 1481 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidDisplayContentWithCertificateErrors, |
1482 GURL /* resource url */, | 1482 GURL /* resource url */) |
1483 std::string /* serialized security info */) | |
1484 | 1483 |
1485 // Sent when the renderer runs content that was loaded with certificate | 1484 // Sent when the renderer runs content that was loaded with certificate |
1486 // errors. | 1485 // errors. |
1487 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidRunContentWithCertificateErrors, | 1486 IPC_MESSAGE_ROUTED1(FrameHostMsg_DidRunContentWithCertificateErrors, |
1488 GURL /* resource url */, | 1487 GURL /* resource url */) |
1489 std::string /* serialized security info */) | |
1490 | 1488 |
1491 // Response to FrameMsg_GetSavableResourceLinks. | 1489 // Response to FrameMsg_GetSavableResourceLinks. |
1492 IPC_MESSAGE_ROUTED3(FrameHostMsg_SavableResourceLinksResponse, | 1490 IPC_MESSAGE_ROUTED3(FrameHostMsg_SavableResourceLinksResponse, |
1493 std::vector<GURL> /* savable resource links */, | 1491 std::vector<GURL> /* savable resource links */, |
1494 content::Referrer /* referrer for all the links above */, | 1492 content::Referrer /* referrer for all the links above */, |
1495 std::vector<content::SavableSubframe> /* subframes */) | 1493 std::vector<content::SavableSubframe> /* subframes */) |
1496 | 1494 |
1497 // Response to FrameMsg_GetSavableResourceLinks in case the frame contains | 1495 // Response to FrameMsg_GetSavableResourceLinks in case the frame contains |
1498 // non-savable content (i.e. from a non-savable scheme) or if there were | 1496 // non-savable content (i.e. from a non-savable scheme) or if there were |
1499 // errors gathering the links. | 1497 // errors gathering the links. |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1578 // nearest find result in the sending frame. | 1576 // nearest find result in the sending frame. |
1579 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1577 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
1580 int /* nfr_request_id */, | 1578 int /* nfr_request_id */, |
1581 float /* distance */) | 1579 float /* distance */) |
1582 #endif | 1580 #endif |
1583 | 1581 |
1584 // Adding a new message? Stick to the sort order above: first platform | 1582 // Adding a new message? Stick to the sort order above: first platform |
1585 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1583 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1586 // platform independent FrameHostMsg, then ifdefs for platform specific | 1584 // platform independent FrameHostMsg, then ifdefs for platform specific |
1587 // FrameHostMsg. | 1585 // FrameHostMsg. |
OLD | NEW |