| 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 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 #elif defined(OS_MACOSX) | 900 #elif defined(OS_MACOSX) |
| 901 // Let the RenderView know its window has changed visibility. | 901 // Let the RenderView know its window has changed visibility. |
| 902 IPC_MESSAGE_ROUTED1(ViewMsg_SetWindowVisibility, | 902 IPC_MESSAGE_ROUTED1(ViewMsg_SetWindowVisibility, |
| 903 bool /* visibile */) | 903 bool /* visibile */) |
| 904 | 904 |
| 905 // Let the RenderView know its window's frame has changed. | 905 // Let the RenderView know its window's frame has changed. |
| 906 IPC_MESSAGE_ROUTED2(ViewMsg_WindowFrameChanged, | 906 IPC_MESSAGE_ROUTED2(ViewMsg_WindowFrameChanged, |
| 907 gfx::Rect /* window frame */, | 907 gfx::Rect /* window frame */, |
| 908 gfx::Rect /* content view frame */) | 908 gfx::Rect /* content view frame */) |
| 909 | 909 |
| 910 // Message sent from the browser to the renderer when the user starts or stops | |
| 911 // resizing the view. | |
| 912 IPC_MESSAGE_ROUTED1(ViewMsg_SetInLiveResize, | |
| 913 bool /* enable */) | |
| 914 | |
| 915 // Tell the renderer that plugin IME has completed. | 910 // Tell the renderer that plugin IME has completed. |
| 916 IPC_MESSAGE_ROUTED2(ViewMsg_PluginImeCompositionCompleted, | 911 IPC_MESSAGE_ROUTED2(ViewMsg_PluginImeCompositionCompleted, |
| 917 base::string16 /* text */, | 912 base::string16 /* text */, |
| 918 int /* plugin_id */) | 913 int /* plugin_id */) |
| 919 #endif | 914 #endif |
| 920 | 915 |
| 921 // Sent by the browser as a reply to ViewHostMsg_SwapCompositorFrame. | 916 // Sent by the browser as a reply to ViewHostMsg_SwapCompositorFrame. |
| 922 IPC_MESSAGE_ROUTED2(ViewMsg_SwapCompositorFrameAck, | 917 IPC_MESSAGE_ROUTED2(ViewMsg_SwapCompositorFrameAck, |
| 923 uint32_t /* output_surface_id */, | 918 uint32_t /* output_surface_id */, |
| 924 cc::CompositorFrameAck /* ack */) | 919 cc::CompositorFrameAck /* ack */) |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1336 // Instructs the browser to start plugin IME. | 1331 // Instructs the browser to start plugin IME. |
| 1337 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) | 1332 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) |
| 1338 | 1333 |
| 1339 // Receives content of a web page as plain text. | 1334 // Receives content of a web page as plain text. |
| 1340 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) | 1335 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) |
| 1341 #endif | 1336 #endif |
| 1342 | 1337 |
| 1343 // Adding a new message? Stick to the sort order above: first platform | 1338 // Adding a new message? Stick to the sort order above: first platform |
| 1344 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 1339 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 1345 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 1340 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |