| 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 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 bool /* if true, a user gesture indicator is created */) | 709 bool /* if true, a user gesture indicator is created */) |
| 710 | 710 |
| 711 // Same as FrameMsg_JavaScriptExecuteRequest above except the script is | 711 // Same as FrameMsg_JavaScriptExecuteRequest above except the script is |
| 712 // run in the isolated world specified by the fourth parameter. | 712 // run in the isolated world specified by the fourth parameter. |
| 713 IPC_MESSAGE_ROUTED4(FrameMsg_JavaScriptExecuteRequestInIsolatedWorld, | 713 IPC_MESSAGE_ROUTED4(FrameMsg_JavaScriptExecuteRequestInIsolatedWorld, |
| 714 base::string16, /* javascript */ | 714 base::string16, /* javascript */ |
| 715 int, /* ID */ | 715 int, /* ID */ |
| 716 bool, /* if true, a reply is requested */ | 716 bool, /* if true, a reply is requested */ |
| 717 int /* world_id */) | 717 int /* world_id */) |
| 718 | 718 |
| 719 // Selects between the given start and end offsets in the currently focused | |
| 720 // editable field. | |
| 721 IPC_MESSAGE_ROUTED2(FrameMsg_SetEditableSelectionOffsets, | |
| 722 int /* start */, | |
| 723 int /* end */) | |
| 724 | |
| 725 // Requests a navigation to the supplied markup, in an iframe with sandbox | 719 // Requests a navigation to the supplied markup, in an iframe with sandbox |
| 726 // attributes. | 720 // attributes. |
| 727 IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView, | 721 IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView, |
| 728 std::string /* markup */) | 722 std::string /* markup */) |
| 729 | 723 |
| 730 // Tells the renderer to hide the elements specified by the supplied CSS | 724 // Tells the renderer to hide the elements specified by the supplied CSS |
| 731 // selector, and activates any exiting-transition stylesheets. | 725 // selector, and activates any exiting-transition stylesheets. |
| 732 IPC_MESSAGE_ROUTED2(FrameMsg_BeginExitTransition, | 726 IPC_MESSAGE_ROUTED2(FrameMsg_BeginExitTransition, |
| 733 std::string /* css_selector */, | 727 std::string /* css_selector */, |
| 734 bool /* exit_to_native_app */) | 728 bool /* exit_to_native_app */) |
| (...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1506 // nearest find result in the sending frame. | 1500 // nearest find result in the sending frame. |
| 1507 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1501 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1508 int /* nfr_request_id */, | 1502 int /* nfr_request_id */, |
| 1509 float /* distance */) | 1503 float /* distance */) |
| 1510 #endif | 1504 #endif |
| 1511 | 1505 |
| 1512 // Adding a new message? Stick to the sort order above: first platform | 1506 // Adding a new message? Stick to the sort order above: first platform |
| 1513 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1507 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1514 // platform independent FrameHostMsg, then ifdefs for platform specific | 1508 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1515 // FrameHostMsg. | 1509 // FrameHostMsg. |
| OLD | NEW |