| 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 1414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1425 // frame traversal order starting in the main frame, then by dom order. | 1425 // frame traversal order starting in the main frame, then by dom order. |
| 1426 // | 1426 // |
| 1427 // |active_rect| will contain the bounding box of the active find-in-page match | 1427 // |active_rect| will contain the bounding box of the active find-in-page match |
| 1428 // marker, in similarly normalized coords (or an empty rect if there isn't one). | 1428 // marker, in similarly normalized coords (or an empty rect if there isn't one). |
| 1429 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1429 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
| 1430 int /* version */, | 1430 int /* version */, |
| 1431 std::vector<gfx::RectF> /* rects */, | 1431 std::vector<gfx::RectF> /* rects */, |
| 1432 gfx::RectF /* active_rect */) | 1432 gfx::RectF /* active_rect */) |
| 1433 #endif | 1433 #endif |
| 1434 | 1434 |
| 1435 IPC_MESSAGE_ROUTED0(FrameHostMsg_IncrementCapturerCount) |
| 1436 IPC_MESSAGE_ROUTED0(FrameHostMsg_DecrementCapturerCount) |
| 1437 |
| 1435 // Adding a new message? Stick to the sort order above: first platform | 1438 // Adding a new message? Stick to the sort order above: first platform |
| 1436 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1439 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1437 // platform independent FrameHostMsg, then ifdefs for platform specific | 1440 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1438 // FrameHostMsg. | 1441 // FrameHostMsg. |
| OLD | NEW |