| 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 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 bool /* if true, a user gesture indicator is created */) | 708 bool /* if true, a user gesture indicator is created */) |
| 709 | 709 |
| 710 // Same as FrameMsg_JavaScriptExecuteRequest above except the script is | 710 // Same as FrameMsg_JavaScriptExecuteRequest above except the script is |
| 711 // run in the isolated world specified by the fourth parameter. | 711 // run in the isolated world specified by the fourth parameter. |
| 712 IPC_MESSAGE_ROUTED4(FrameMsg_JavaScriptExecuteRequestInIsolatedWorld, | 712 IPC_MESSAGE_ROUTED4(FrameMsg_JavaScriptExecuteRequestInIsolatedWorld, |
| 713 base::string16, /* javascript */ | 713 base::string16, /* javascript */ |
| 714 int, /* ID */ | 714 int, /* ID */ |
| 715 bool, /* if true, a reply is requested */ | 715 bool, /* if true, a reply is requested */ |
| 716 int /* world_id */) | 716 int /* world_id */) |
| 717 | 717 |
| 718 // Selects between the given start and end offsets in the currently focused | |
| 719 // editable field. | |
| 720 IPC_MESSAGE_ROUTED2(FrameMsg_SetEditableSelectionOffsets, | |
| 721 int /* start */, | |
| 722 int /* end */) | |
| 723 | |
| 724 // Requests a navigation to the supplied markup, in an iframe with sandbox | 718 // Requests a navigation to the supplied markup, in an iframe with sandbox |
| 725 // attributes. | 719 // attributes. |
| 726 IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView, | 720 IPC_MESSAGE_ROUTED1(FrameMsg_SetupTransitionView, |
| 727 std::string /* markup */) | 721 std::string /* markup */) |
| 728 | 722 |
| 729 // Tells the renderer to hide the elements specified by the supplied CSS | 723 // Tells the renderer to hide the elements specified by the supplied CSS |
| 730 // selector, and activates any exiting-transition stylesheets. | 724 // selector, and activates any exiting-transition stylesheets. |
| 731 IPC_MESSAGE_ROUTED2(FrameMsg_BeginExitTransition, | 725 IPC_MESSAGE_ROUTED2(FrameMsg_BeginExitTransition, |
| 732 std::string /* css_selector */, | 726 std::string /* css_selector */, |
| 733 bool /* exit_to_native_app */) | 727 bool /* exit_to_native_app */) |
| (...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1472 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1466 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
| 1473 int /* version */, | 1467 int /* version */, |
| 1474 std::vector<gfx::RectF> /* rects */, | 1468 std::vector<gfx::RectF> /* rects */, |
| 1475 gfx::RectF /* active_rect */) | 1469 gfx::RectF /* active_rect */) |
| 1476 #endif | 1470 #endif |
| 1477 | 1471 |
| 1478 // Adding a new message? Stick to the sort order above: first platform | 1472 // Adding a new message? Stick to the sort order above: first platform |
| 1479 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1473 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1480 // platform independent FrameHostMsg, then ifdefs for platform specific | 1474 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1481 // FrameHostMsg. | 1475 // FrameHostMsg. |
| OLD | NEW |