| 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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 IPC_MESSAGE_ROUTED0(FrameMsg_RevertExitTransition) | 720 IPC_MESSAGE_ROUTED0(FrameMsg_RevertExitTransition) |
| 721 | 721 |
| 722 // Tell the renderer to hide transition elements. | 722 // Tell the renderer to hide transition elements. |
| 723 IPC_MESSAGE_ROUTED1(FrameMsg_HideTransitionElements, | 723 IPC_MESSAGE_ROUTED1(FrameMsg_HideTransitionElements, |
| 724 std::string /* css_selector */) | 724 std::string /* css_selector */) |
| 725 | 725 |
| 726 // Tell the renderer to hide transition elements. | 726 // Tell the renderer to hide transition elements. |
| 727 IPC_MESSAGE_ROUTED1(FrameMsg_ShowTransitionElements, | 727 IPC_MESSAGE_ROUTED1(FrameMsg_ShowTransitionElements, |
| 728 std::string /* css_selector */) | 728 std::string /* css_selector */) |
| 729 | 729 |
| 730 // Tells the renderer to reload the frame, optionally ignoring the cache while | 730 // Tells the renderer to reload the frame, optionally bypassing the cache while |
| 731 // doing so. | 731 // doing so. |
| 732 IPC_MESSAGE_ROUTED1(FrameMsg_Reload, | 732 IPC_MESSAGE_ROUTED1(FrameMsg_Reload, |
| 733 bool /* ignore_cache */) | 733 bool /* bypass_cache */) |
| 734 | 734 |
| 735 // Notifies the color chooser client that the user selected a color. | 735 // Notifies the color chooser client that the user selected a color. |
| 736 IPC_MESSAGE_ROUTED2(FrameMsg_DidChooseColorResponse, unsigned, SkColor) | 736 IPC_MESSAGE_ROUTED2(FrameMsg_DidChooseColorResponse, unsigned, SkColor) |
| 737 | 737 |
| 738 // Notifies the color chooser client that the color chooser has ended. | 738 // Notifies the color chooser client that the color chooser has ended. |
| 739 IPC_MESSAGE_ROUTED1(FrameMsg_DidEndColorChooser, unsigned) | 739 IPC_MESSAGE_ROUTED1(FrameMsg_DidEndColorChooser, unsigned) |
| 740 | 740 |
| 741 // Notifies the corresponding RenderFrameProxy object to replace itself with the | 741 // Notifies the corresponding RenderFrameProxy object to replace itself with the |
| 742 // RenderFrame object it is associated with. | 742 // RenderFrame object it is associated with. |
| 743 IPC_MESSAGE_ROUTED0(FrameMsg_DeleteProxy) | 743 IPC_MESSAGE_ROUTED0(FrameMsg_DeleteProxy) |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1458 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1458 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
| 1459 int /* version */, | 1459 int /* version */, |
| 1460 std::vector<gfx::RectF> /* rects */, | 1460 std::vector<gfx::RectF> /* rects */, |
| 1461 gfx::RectF /* active_rect */) | 1461 gfx::RectF /* active_rect */) |
| 1462 #endif | 1462 #endif |
| 1463 | 1463 |
| 1464 // Adding a new message? Stick to the sort order above: first platform | 1464 // Adding a new message? Stick to the sort order above: first platform |
| 1465 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1465 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1466 // platform independent FrameHostMsg, then ifdefs for platform specific | 1466 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1467 // FrameHostMsg. | 1467 // FrameHostMsg. |
| OLD | NEW |