| 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 1593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1604 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1604 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
| 1605 int /* version */, | 1605 int /* version */, |
| 1606 std::vector<gfx::RectF> /* rects */, | 1606 std::vector<gfx::RectF> /* rects */, |
| 1607 gfx::RectF /* active_rect */) | 1607 gfx::RectF /* active_rect */) |
| 1608 | 1608 |
| 1609 // Response to FrameMsg_GetNearestFindResult. |distance| is the distance to the | 1609 // Response to FrameMsg_GetNearestFindResult. |distance| is the distance to the |
| 1610 // nearest find result in the sending frame. | 1610 // nearest find result in the sending frame. |
| 1611 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1611 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
| 1612 int /* nfr_request_id */, | 1612 int /* nfr_request_id */, |
| 1613 float /* distance */) | 1613 float /* distance */) |
| 1614 |
| 1615 IPC_MESSAGE_ROUTED0(FrameHostMsg_NavigationHandledByEmbedder) |
| 1614 #endif | 1616 #endif |
| 1615 | 1617 |
| 1616 // Adding a new message? Stick to the sort order above: first platform | 1618 // Adding a new message? Stick to the sort order above: first platform |
| 1617 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1619 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1618 // platform independent FrameHostMsg, then ifdefs for platform specific | 1620 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1619 // FrameHostMsg. | 1621 // FrameHostMsg. |
| OLD | NEW |