| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 page rendering. | 5 // IPC messages for page rendering. |
| 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 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 cc::BeginFrameArgs /* args */) | 615 cc::BeginFrameArgs /* args */) |
| 616 | 616 |
| 617 // Sent by the browser to deliver a compositor proto to the renderer. | 617 // Sent by the browser to deliver a compositor proto to the renderer. |
| 618 IPC_MESSAGE_ROUTED1(ViewMsg_HandleCompositorProto, | 618 IPC_MESSAGE_ROUTED1(ViewMsg_HandleCompositorProto, |
| 619 std::vector<uint8_t> /* proto */) | 619 std::vector<uint8_t> /* proto */) |
| 620 | 620 |
| 621 // Sets the viewport intersection on the widget for an out-of-process iframe. | 621 // Sets the viewport intersection on the widget for an out-of-process iframe. |
| 622 IPC_MESSAGE_ROUTED1(ViewMsg_SetViewportIntersection, | 622 IPC_MESSAGE_ROUTED1(ViewMsg_SetViewportIntersection, |
| 623 gfx::Rect /* viewport_intersection */) | 623 gfx::Rect /* viewport_intersection */) |
| 624 | 624 |
| 625 // Sets the inert bit on an out-of-process iframe. |
| 626 IPC_MESSAGE_ROUTED1(ViewMsg_SetIsInert, bool /* inert */) |
| 627 |
| 625 // ----------------------------------------------------------------------------- | 628 // ----------------------------------------------------------------------------- |
| 626 // Messages sent from the renderer to the browser. | 629 // Messages sent from the renderer to the browser. |
| 627 | 630 |
| 628 // Sent by renderer to request a ViewMsg_BeginFrame message for upcoming | 631 // Sent by renderer to request a ViewMsg_BeginFrame message for upcoming |
| 629 // display events. If |enabled| is true, the BeginFrame message will continue | 632 // display events. If |enabled| is true, the BeginFrame message will continue |
| 630 // to be be delivered until the notification is disabled. | 633 // to be be delivered until the notification is disabled. |
| 631 IPC_MESSAGE_ROUTED1(ViewHostMsg_SetNeedsBeginFrames, | 634 IPC_MESSAGE_ROUTED1(ViewHostMsg_SetNeedsBeginFrames, |
| 632 bool /* enabled */) | 635 bool /* enabled */) |
| 633 | 636 |
| 634 // These two messages are sent to the parent RenderViewHost to display a widget | 637 // These two messages are sent to the parent RenderViewHost to display a widget |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 885 int /* y */) | 888 int /* y */) |
| 886 | 889 |
| 887 #elif defined(OS_MACOSX) | 890 #elif defined(OS_MACOSX) |
| 888 // Receives content of a web page as plain text. | 891 // Receives content of a web page as plain text. |
| 889 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 892 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 890 #endif | 893 #endif |
| 891 | 894 |
| 892 // Adding a new message? Stick to the sort order above: first platform | 895 // Adding a new message? Stick to the sort order above: first platform |
| 893 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 896 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 894 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 897 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |