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 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 | 572 |
573 // Notifies the embedding frame that the process rendering the child frame's | 573 // Notifies the embedding frame that the process rendering the child frame's |
574 // contents has terminated. | 574 // contents has terminated. |
575 IPC_MESSAGE_ROUTED0(FrameMsg_ChildFrameProcessGone) | 575 IPC_MESSAGE_ROUTED0(FrameMsg_ChildFrameProcessGone) |
576 | 576 |
577 // Sent in response to a FrameHostMsg_ContextMenu to let the renderer know that | 577 // Sent in response to a FrameHostMsg_ContextMenu to let the renderer know that |
578 // the menu has been closed. | 578 // the menu has been closed. |
579 IPC_MESSAGE_ROUTED1(FrameMsg_ContextMenuClosed, | 579 IPC_MESSAGE_ROUTED1(FrameMsg_ContextMenuClosed, |
580 content::CustomContextMenuContext /* custom_context */) | 580 content::CustomContextMenuContext /* custom_context */) |
581 | 581 |
| 582 // Reloads all the Lo-Fi images in the RenderFrame. Ignores the cache and |
| 583 // reloads from the network. |
| 584 IPC_MESSAGE_ROUTED0(FrameMsg_ReloadLoFiImages) |
| 585 |
582 // Executes custom context menu action that was provided from Blink. | 586 // Executes custom context menu action that was provided from Blink. |
583 IPC_MESSAGE_ROUTED2(FrameMsg_CustomContextMenuAction, | 587 IPC_MESSAGE_ROUTED2(FrameMsg_CustomContextMenuAction, |
584 content::CustomContextMenuContext /* custom_context */, | 588 content::CustomContextMenuContext /* custom_context */, |
585 unsigned /* action */) | 589 unsigned /* action */) |
586 | 590 |
587 // Requests that the RenderFrame or RenderFrameProxy updates its opener to the | 591 // Requests that the RenderFrame or RenderFrameProxy updates its opener to the |
588 // specified frame. The routing ID may be MSG_ROUTING_NONE if the opener was | 592 // specified frame. The routing ID may be MSG_ROUTING_NONE if the opener was |
589 // disowned. | 593 // disowned. |
590 IPC_MESSAGE_ROUTED1(FrameMsg_UpdateOpener, int /* opener_routing_id */) | 594 IPC_MESSAGE_ROUTED1(FrameMsg_UpdateOpener, int /* opener_routing_id */) |
591 | 595 |
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1442 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1446 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
1443 int /* version */, | 1447 int /* version */, |
1444 std::vector<gfx::RectF> /* rects */, | 1448 std::vector<gfx::RectF> /* rects */, |
1445 gfx::RectF /* active_rect */) | 1449 gfx::RectF /* active_rect */) |
1446 #endif | 1450 #endif |
1447 | 1451 |
1448 // Adding a new message? Stick to the sort order above: first platform | 1452 // Adding a new message? Stick to the sort order above: first platform |
1449 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1453 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1450 // platform independent FrameHostMsg, then ifdefs for platform specific | 1454 // platform independent FrameHostMsg, then ifdefs for platform specific |
1451 // FrameHostMsg. | 1455 // FrameHostMsg. |
OLD | NEW |