| 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 1493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1504 std::string /* http method */, | 1504 std::string /* http method */, |
| 1505 std::string /* mime type */, | 1505 std::string /* mime type */, |
| 1506 content::ResourceType /* resource type */) | 1506 content::ResourceType /* resource type */) |
| 1507 | 1507 |
| 1508 // PlzNavigate | 1508 // PlzNavigate |
| 1509 // Tells the browser to perform a navigation. | 1509 // Tells the browser to perform a navigation. |
| 1510 IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation, | 1510 IPC_MESSAGE_ROUTED2(FrameHostMsg_BeginNavigation, |
| 1511 content::CommonNavigationParams, | 1511 content::CommonNavigationParams, |
| 1512 content::BeginNavigationParams) | 1512 content::BeginNavigationParams) |
| 1513 | 1513 |
| 1514 // PlzNavigate |
| 1515 // Tells the browser to abort an ongoing renderer-initiated navigation. This is |
| 1516 // used when the page calls document.open. |
| 1517 IPC_MESSAGE_ROUTED0(FrameHostMsg_AbortNavigation) |
| 1518 |
| 1514 // Sent as a response to FrameMsg_VisualStateRequest. | 1519 // Sent as a response to FrameMsg_VisualStateRequest. |
| 1515 // The message is delivered using RenderWidget::QueueMessage. | 1520 // The message is delivered using RenderWidget::QueueMessage. |
| 1516 IPC_MESSAGE_ROUTED1(FrameHostMsg_VisualStateResponse, uint64_t /* id */) | 1521 IPC_MESSAGE_ROUTED1(FrameHostMsg_VisualStateResponse, uint64_t /* id */) |
| 1517 | 1522 |
| 1518 // Reply to the ExtractSmartClipData message. | 1523 // Reply to the ExtractSmartClipData message. |
| 1519 IPC_MESSAGE_ROUTED3(FrameHostMsg_SmartClipDataExtracted, | 1524 IPC_MESSAGE_ROUTED3(FrameHostMsg_SmartClipDataExtracted, |
| 1520 uint32_t /* id */, | 1525 uint32_t /* id */, |
| 1521 base::string16 /* text */, | 1526 base::string16 /* text */, |
| 1522 base::string16 /* html */) | 1527 base::string16 /* html */) |
| 1523 | 1528 |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1645 int /* nfr_request_id */, | 1650 int /* nfr_request_id */, |
| 1646 float /* distance */) | 1651 float /* distance */) |
| 1647 | 1652 |
| 1648 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) | 1653 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
| 1649 #endif | 1654 #endif |
| 1650 | 1655 |
| 1651 // Adding a new message? Stick to the sort order above: first platform | 1656 // Adding a new message? Stick to the sort order above: first platform |
| 1652 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1657 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1653 // platform independent FrameHostMsg, then ifdefs for platform specific | 1658 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1654 // FrameHostMsg. | 1659 // FrameHostMsg. |
| OLD | NEW |