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 1461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1472 int /* active_match_ordinal */, | 1472 int /* active_match_ordinal */, |
1473 bool /* final_update */) | 1473 bool /* final_update */) |
1474 | 1474 |
1475 // Sends hittesting data needed to perform hittesting on the browser process. | 1475 // Sends hittesting data needed to perform hittesting on the browser process. |
1476 IPC_MESSAGE_ROUTED1(FrameHostMsg_HittestData, FrameHostMsg_HittestData_Params) | 1476 IPC_MESSAGE_ROUTED1(FrameHostMsg_HittestData, FrameHostMsg_HittestData_Params) |
1477 | 1477 |
1478 // Asks the browser to display the file chooser. The result is returned in a | 1478 // Asks the browser to display the file chooser. The result is returned in a |
1479 // FrameMsg_RunFileChooserResponse message. | 1479 // FrameMsg_RunFileChooserResponse message. |
1480 IPC_MESSAGE_ROUTED1(FrameHostMsg_RunFileChooser, content::FileChooserParams) | 1480 IPC_MESSAGE_ROUTED1(FrameHostMsg_RunFileChooser, content::FileChooserParams) |
1481 | 1481 |
| 1482 IPC_MESSAGE_ROUTED1(FrameHostMsg_RestorePageScaleFactorOnLoad, |
| 1483 float /* page_scale */) |
| 1484 |
1482 #if defined(USE_EXTERNAL_POPUP_MENU) | 1485 #if defined(USE_EXTERNAL_POPUP_MENU) |
1483 | 1486 |
1484 // Message to show/hide a popup menu using native controls. | 1487 // Message to show/hide a popup menu using native controls. |
1485 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, | 1488 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, |
1486 FrameHostMsg_ShowPopup_Params) | 1489 FrameHostMsg_ShowPopup_Params) |
1487 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) | 1490 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) |
1488 | 1491 |
1489 #endif | 1492 #endif |
1490 | 1493 |
1491 #if defined(OS_ANDROID) | 1494 #if defined(OS_ANDROID) |
(...skipping 21 matching lines...) Expand all Loading... |
1513 // nearest find result in the sending frame. | 1516 // nearest find result in the sending frame. |
1514 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, | 1517 IPC_MESSAGE_ROUTED2(FrameHostMsg_GetNearestFindResult_Reply, |
1515 int /* nfr_request_id */, | 1518 int /* nfr_request_id */, |
1516 float /* distance */) | 1519 float /* distance */) |
1517 #endif | 1520 #endif |
1518 | 1521 |
1519 // Adding a new message? Stick to the sort order above: first platform | 1522 // Adding a new message? Stick to the sort order above: first platform |
1520 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1523 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1521 // platform independent FrameHostMsg, then ifdefs for platform specific | 1524 // platform independent FrameHostMsg, then ifdefs for platform specific |
1522 // FrameHostMsg. | 1525 // FrameHostMsg. |
OLD | NEW |