| 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 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1060 bool /* cookies_enabled */) | 1060 bool /* cookies_enabled */) |
| 1061 | 1061 |
| 1062 // Sent by the renderer process to check whether client 3D APIs | 1062 // Sent by the renderer process to check whether client 3D APIs |
| 1063 // (Pepper 3D, WebGL) are explicitly blocked. | 1063 // (Pepper 3D, WebGL) are explicitly blocked. |
| 1064 IPC_SYNC_MESSAGE_CONTROL3_1(FrameHostMsg_Are3DAPIsBlocked, | 1064 IPC_SYNC_MESSAGE_CONTROL3_1(FrameHostMsg_Are3DAPIsBlocked, |
| 1065 int /* render_frame_id */, | 1065 int /* render_frame_id */, |
| 1066 GURL /* top_origin_url */, | 1066 GURL /* top_origin_url */, |
| 1067 content::ThreeDAPIType /* requester */, | 1067 content::ThreeDAPIType /* requester */, |
| 1068 bool /* blocked */) | 1068 bool /* blocked */) |
| 1069 | 1069 |
| 1070 // Sent by the renderer process to indicate that a context was lost by | |
| 1071 // client 3D content (Pepper 3D, WebGL) running on the page at the | |
| 1072 // given URL. | |
| 1073 IPC_MESSAGE_CONTROL3(FrameHostMsg_DidLose3DContext, | |
| 1074 GURL /* top_origin_url */, | |
| 1075 content::ThreeDAPIType /* context_type */, | |
| 1076 int /* arb_robustness_status_code */) | |
| 1077 | |
| 1078 #if defined(ENABLE_PLUGINS) | 1070 #if defined(ENABLE_PLUGINS) |
| 1079 // Notification sent from a renderer to the browser that a Pepper plugin | 1071 // Notification sent from a renderer to the browser that a Pepper plugin |
| 1080 // instance is created in the DOM. | 1072 // instance is created in the DOM. |
| 1081 IPC_MESSAGE_ROUTED0(FrameHostMsg_PepperInstanceCreated) | 1073 IPC_MESSAGE_ROUTED0(FrameHostMsg_PepperInstanceCreated) |
| 1082 | 1074 |
| 1083 // Notification sent from a renderer to the browser that a Pepper plugin | 1075 // Notification sent from a renderer to the browser that a Pepper plugin |
| 1084 // instance is deleted from the DOM. | 1076 // instance is deleted from the DOM. |
| 1085 IPC_MESSAGE_ROUTED0(FrameHostMsg_PepperInstanceDeleted) | 1077 IPC_MESSAGE_ROUTED0(FrameHostMsg_PepperInstanceDeleted) |
| 1086 | 1078 |
| 1087 // Sent to the browser when the renderer detects it is blocked on a pepper | 1079 // Sent to the browser when the renderer detects it is blocked on a pepper |
| (...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1446 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1438 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
| 1447 int /* version */, | 1439 int /* version */, |
| 1448 std::vector<gfx::RectF> /* rects */, | 1440 std::vector<gfx::RectF> /* rects */, |
| 1449 gfx::RectF /* active_rect */) | 1441 gfx::RectF /* active_rect */) |
| 1450 #endif | 1442 #endif |
| 1451 | 1443 |
| 1452 // Adding a new message? Stick to the sort order above: first platform | 1444 // Adding a new message? Stick to the sort order above: first platform |
| 1453 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1445 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
| 1454 // platform independent FrameHostMsg, then ifdefs for platform specific | 1446 // platform independent FrameHostMsg, then ifdefs for platform specific |
| 1455 // FrameHostMsg. | 1447 // FrameHostMsg. |
| OLD | NEW |