| 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 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1098 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeSandboxFlags, | 1098 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeSandboxFlags, |
| 1099 int32_t /* subframe_routing_id */, | 1099 int32_t /* subframe_routing_id */, |
| 1100 blink::WebSandboxFlags /* updated_flags */) | 1100 blink::WebSandboxFlags /* updated_flags */) |
| 1101 | 1101 |
| 1102 // Notifies the browser that frame owner properties have changed for a subframe | 1102 // Notifies the browser that frame owner properties have changed for a subframe |
| 1103 // of this frame. | 1103 // of this frame. |
| 1104 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeFrameOwnerProperties, | 1104 IPC_MESSAGE_ROUTED2(FrameHostMsg_DidChangeFrameOwnerProperties, |
| 1105 int32_t /* subframe_routing_id */, | 1105 int32_t /* subframe_routing_id */, |
| 1106 content::FrameOwnerProperties /* frame_owner_properties */) | 1106 content::FrameOwnerProperties /* frame_owner_properties */) |
| 1107 | 1107 |
| 1108 // Notifies the browser that document has parsed the body. This is used by the |
| 1109 // ResourceScheduler as an indication that bandwidth contention won't block |
| 1110 // first paint. |
| 1111 IPC_MESSAGE_ROUTED1(FrameHostMsg_WillInsertBody, |
| 1112 int /* render_view_routing_id */) |
| 1113 |
| 1108 // Changes the title for the page in the UI when the page is navigated or the | 1114 // Changes the title for the page in the UI when the page is navigated or the |
| 1109 // title changes. Sent for top-level frames. | 1115 // title changes. Sent for top-level frames. |
| 1110 IPC_MESSAGE_ROUTED2(FrameHostMsg_UpdateTitle, | 1116 IPC_MESSAGE_ROUTED2(FrameHostMsg_UpdateTitle, |
| 1111 base::string16 /* title */, | 1117 base::string16 /* title */, |
| 1112 blink::WebTextDirection /* title direction */) | 1118 blink::WebTextDirection /* title direction */) |
| 1113 | 1119 |
| 1114 // Change the encoding name of the page in UI when the page has detected | 1120 // Change the encoding name of the page in UI when the page has detected |
| 1115 // proper encoding name. Sent for top-level frames. | 1121 // proper encoding name. Sent for top-level frames. |
| 1116 IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdateEncoding, | 1122 IPC_MESSAGE_ROUTED1(FrameHostMsg_UpdateEncoding, |
| 1117 std::string /* new encoding name */) | 1123 std::string /* new encoding name */) |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1557 // nearest find result in the sending frame. | 1563 // nearest find result in the sending frame. |
| 1558 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1564 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1559 int /* nfr_request_id */, | 1565 int /* nfr_request_id */, |
| 1560 float /* distance */) | 1566 float /* distance */) |
| 1561 #endif | 1567 #endif |
| 1562 | 1568 |
| 1563 // Adding a new message? Stick to the sort order above: first platform | 1569 // Adding a new message? Stick to the sort order above: first platform |
| 1564 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1570 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1565 // platform independent FrameHostMsg, then ifdefs for platform specific | 1571 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1566 // FrameHostMsg. | 1572 // FrameHostMsg. |
| OLD | NEW |