| 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 723 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 734 bool /* if true, a user gesture indicator is created */) | 734 bool /* if true, a user gesture indicator is created */) |
| 735 | 735 |
| 736 // Same as FrameMsg_JavaScriptExecuteRequest above except the script is | 736 // Same as FrameMsg_JavaScriptExecuteRequest above except the script is |
| 737 // run in the isolated world specified by the fourth parameter. | 737 // run in the isolated world specified by the fourth parameter. |
| 738 IPC_MESSAGE_ROUTED4(FrameMsg_JavaScriptExecuteRequestInIsolatedWorld, | 738 IPC_MESSAGE_ROUTED4(FrameMsg_JavaScriptExecuteRequestInIsolatedWorld, |
| 739 base::string16, /* javascript */ | 739 base::string16, /* javascript */ |
| 740 int, /* ID */ | 740 int, /* ID */ |
| 741 bool, /* if true, a reply is requested */ | 741 bool, /* if true, a reply is requested */ |
| 742 int /* world_id */) | 742 int /* world_id */) |
| 743 | 743 |
| 744 // Selects between the given start and end offsets in the currently focused | |
| 745 // editable field. | |
| 746 IPC_MESSAGE_ROUTED2(FrameMsg_SetEditableSelectionOffsets, | |
| 747 int /* start */, | |
| 748 int /* end */) | |
| 749 | |
| 750 // Requests a navigation to the supplied markup, in an iframe with sandbox | 744 // Requests a navigation to the supplied markup, in an iframe with sandbox |
| 751 // attributes. | 745 // attributes. |
| 752 IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView, | 746 IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView, |
| 753 std::string /* markup */) | 747 std::string /* markup */) |
| 754 | 748 |
| 755 // Tells the renderer to hide the elements specified by the supplied CSS | 749 // Tells the renderer to hide the elements specified by the supplied CSS |
| 756 // selector, and activates any exiting-transition stylesheets. | 750 // selector, and activates any exiting-transition stylesheets. |
| 757 IPC_MESSAGE_ROUTED2(FrameMsg_BeginExitTransition, | 751 IPC_MESSAGE_ROUTED2(FrameMsg_BeginExitTransition, |
| 758 std::string /* css_selector */, | 752 std::string /* css_selector */, |
| 759 bool /* exit_to_native_app */) | 753 bool /* exit_to_native_app */) |
| (...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1537 // nearest find result in the sending frame. | 1531 // nearest find result in the sending frame. |
| 1538 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1532 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1539 int /* nfr_request_id */, | 1533 int /* nfr_request_id */, |
| 1540 float /* distance */) | 1534 float /* distance */) |
| 1541 #endif | 1535 #endif |
| 1542 | 1536 |
| 1543 // Adding a new message? Stick to the sort order above: first platform | 1537 // Adding a new message? Stick to the sort order above: first platform |
| 1544 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1538 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1545 // platform independent FrameHostMsg, then ifdefs for platform specific | 1539 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1546 // FrameHostMsg. | 1540 // FrameHostMsg. |
| OLD | NEW |