| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
| 6 // header guard. | 6 // header guard. |
| 7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 1976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1987 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, | 1987 IPC_MESSAGE_CONTROL1(ViewHostMsg_FreeTransportDIB, |
| 1988 TransportDIB::Id /* DIB id */) | 1988 TransportDIB::Id /* DIB id */) |
| 1989 | 1989 |
| 1990 //--------------------------------------------------------------------------- | 1990 //--------------------------------------------------------------------------- |
| 1991 // Messages related to the GPU plugin on Mac OS X 10.6 and later | 1991 // Messages related to the GPU plugin on Mac OS X 10.6 and later |
| 1992 | 1992 |
| 1993 // This is sent from the renderer to the browser to allocate a fake | 1993 // This is sent from the renderer to the browser to allocate a fake |
| 1994 // PluginWindowHandle on the browser side which is used to identify | 1994 // PluginWindowHandle on the browser side which is used to identify |
| 1995 // the plugin to the browser later when backing store is allocated | 1995 // the plugin to the browser later when backing store is allocated |
| 1996 // or reallocated. |opaque| indicates whether the plugin's output is | 1996 // or reallocated. |opaque| indicates whether the plugin's output is |
| 1997 // considered to be opaque, as opposed to translucent. | 1997 // considered to be opaque, as opposed to translucent. This message |
| 1998 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_AllocateFakePluginWindowHandle, | 1998 // is reused for rendering the accelerated compositor's output. |
| 1999 // |root| indicates whether the output is supposed to cover the |
| 2000 // entire window. |
| 2001 IPC_SYNC_MESSAGE_ROUTED2_1(ViewHostMsg_AllocateFakePluginWindowHandle, |
| 1999 bool /* opaque */, | 2002 bool /* opaque */, |
| 2003 bool /* root */, |
| 2000 gfx::PluginWindowHandle /* id */) | 2004 gfx::PluginWindowHandle /* id */) |
| 2001 | 2005 |
| 2002 // Destroys a fake window handle previously allocated using | 2006 // Destroys a fake window handle previously allocated using |
| 2003 // AllocateFakePluginWindowHandle. | 2007 // AllocateFakePluginWindowHandle. |
| 2004 IPC_MESSAGE_ROUTED1(ViewHostMsg_DestroyFakePluginWindowHandle, | 2008 IPC_MESSAGE_ROUTED1(ViewHostMsg_DestroyFakePluginWindowHandle, |
| 2005 gfx::PluginWindowHandle /* id */) | 2009 gfx::PluginWindowHandle /* id */) |
| 2006 | 2010 |
| 2007 // This message, used on Mac OS X 10.5 and earlier (no IOSurface support), | 2011 // This message, used on Mac OS X 10.5 and earlier (no IOSurface support), |
| 2008 // is sent from the renderer to the browser on behalf of the plug-in | 2012 // is sent from the renderer to the browser on behalf of the plug-in |
| 2009 // to indicate that a new backing store was allocated for that plug-in | 2013 // to indicate that a new backing store was allocated for that plug-in |
| (...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2529 // Send the tree of accessibility data to the browser, where it's cached | 2533 // Send the tree of accessibility data to the browser, where it's cached |
| 2530 // in order to respond to OS accessibility queries immediately. | 2534 // in order to respond to OS accessibility queries immediately. |
| 2531 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, | 2535 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, |
| 2532 webkit_glue::WebAccessibility) | 2536 webkit_glue::WebAccessibility) |
| 2533 | 2537 |
| 2534 // Notifies the TabContents that the content being displayed is PDF. | 2538 // Notifies the TabContents that the content being displayed is PDF. |
| 2535 // This allows the browser to handle things such as zooming differently. | 2539 // This allows the browser to handle things such as zooming differently. |
| 2536 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent) | 2540 IPC_MESSAGE_ROUTED0(ViewHostMsg_SetDisplayingPDFContent) |
| 2537 | 2541 |
| 2538 IPC_END_MESSAGES(ViewHost) | 2542 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |