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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
557 | 557 |
558 // Notifies the embedding frame that the process rendering the child frame's | 558 // Notifies the embedding frame that the process rendering the child frame's |
559 // contents has terminated. | 559 // contents has terminated. |
560 IPC_MESSAGE_ROUTED0(FrameMsg_ChildFrameProcessGone) | 560 IPC_MESSAGE_ROUTED0(FrameMsg_ChildFrameProcessGone) |
561 | 561 |
562 // Sent in response to a FrameHostMsg_ContextMenu to let the renderer know that | 562 // Sent in response to a FrameHostMsg_ContextMenu to let the renderer know that |
563 // the menu has been closed. | 563 // the menu has been closed. |
564 IPC_MESSAGE_ROUTED1(FrameMsg_ContextMenuClosed, | 564 IPC_MESSAGE_ROUTED1(FrameMsg_ContextMenuClosed, |
565 content::CustomContextMenuContext /* custom_context */) | 565 content::CustomContextMenuContext /* custom_context */) |
566 | 566 |
| 567 // Reloads all the Lo-Fi images in the RenderFrame. Ignores the cache and |
| 568 // reloads from the network. |
| 569 IPC_MESSAGE_ROUTED0(FrameMsg_ReloadLoFiImages) |
| 570 |
567 // Executes custom context menu action that was provided from Blink. | 571 // Executes custom context menu action that was provided from Blink. |
568 IPC_MESSAGE_ROUTED2(FrameMsg_CustomContextMenuAction, | 572 IPC_MESSAGE_ROUTED2(FrameMsg_CustomContextMenuAction, |
569 content::CustomContextMenuContext /* custom_context */, | 573 content::CustomContextMenuContext /* custom_context */, |
570 unsigned /* action */) | 574 unsigned /* action */) |
571 | 575 |
572 // Requests that the RenderFrame or RenderFrameProxy updates its opener to the | 576 // Requests that the RenderFrame or RenderFrameProxy updates its opener to the |
573 // specified frame. The routing ID may be MSG_ROUTING_NONE if the opener was | 577 // specified frame. The routing ID may be MSG_ROUTING_NONE if the opener was |
574 // disowned. | 578 // disowned. |
575 IPC_MESSAGE_ROUTED1(FrameMsg_UpdateOpener, int /* opener_routing_id */) | 579 IPC_MESSAGE_ROUTED1(FrameMsg_UpdateOpener, int /* opener_routing_id */) |
576 | 580 |
(...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1433 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1437 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
1434 int /* version */, | 1438 int /* version */, |
1435 std::vector<gfx::RectF> /* rects */, | 1439 std::vector<gfx::RectF> /* rects */, |
1436 gfx::RectF /* active_rect */) | 1440 gfx::RectF /* active_rect */) |
1437 #endif | 1441 #endif |
1438 | 1442 |
1439 // Adding a new message? Stick to the sort order above: first platform | 1443 // Adding a new message? Stick to the sort order above: first platform |
1440 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1444 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1441 // platform independent FrameHostMsg, then ifdefs for platform specific | 1445 // platform independent FrameHostMsg, then ifdefs for platform specific |
1442 // FrameHostMsg. | 1446 // FrameHostMsg. |
OLD | NEW |