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 2042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2053 // Messages related to the GPU plugin on Mac OS X 10.6 and later | 2053 // Messages related to the GPU plugin on Mac OS X 10.6 and later |
2054 | 2054 |
2055 // This is sent from the renderer to the browser to allocate a fake | 2055 // This is sent from the renderer to the browser to allocate a fake |
2056 // PluginWindowHandle on the browser side which is used to identify | 2056 // PluginWindowHandle on the browser side which is used to identify |
2057 // the plugin to the browser later when backing store is allocated | 2057 // the plugin to the browser later when backing store is allocated |
2058 // or reallocated. |opaque| indicates whether the plugin's output is | 2058 // or reallocated. |opaque| indicates whether the plugin's output is |
2059 // considered to be opaque, as opposed to translucent. This message | 2059 // considered to be opaque, as opposed to translucent. This message |
2060 // is reused for rendering the accelerated compositor's output. | 2060 // is reused for rendering the accelerated compositor's output. |
2061 // |root| indicates whether the output is supposed to cover the | 2061 // |root| indicates whether the output is supposed to cover the |
2062 // entire window. | 2062 // entire window. |
2063 IPC_SYNC_MESSAGE_ROUTED2_1(ViewHostMsg_AllocateFakePluginWindowHandle, | 2063 IPC_SYNC_MESSAGE_ROUTED3_1(ViewHostMsg_AllocateFakePluginWindowHandle, |
2064 bool /* opaque */, | 2064 bool /* opaque */, |
| 2065 bool /* can_draw_transparent */, |
2065 bool /* root */, | 2066 bool /* root */, |
2066 gfx::PluginWindowHandle /* id */) | 2067 gfx::PluginWindowHandle /* id */) |
2067 | 2068 |
2068 // Destroys a fake window handle previously allocated using | 2069 // Destroys a fake window handle previously allocated using |
2069 // AllocateFakePluginWindowHandle. | 2070 // AllocateFakePluginWindowHandle. |
2070 IPC_MESSAGE_ROUTED1(ViewHostMsg_DestroyFakePluginWindowHandle, | 2071 IPC_MESSAGE_ROUTED1(ViewHostMsg_DestroyFakePluginWindowHandle, |
2071 gfx::PluginWindowHandle /* id */) | 2072 gfx::PluginWindowHandle /* id */) |
2072 | 2073 |
2073 // This message, used on Mac OS X 10.5 and earlier (no IOSurface support), | 2074 // This message, used on Mac OS X 10.5 and earlier (no IOSurface support), |
2074 // is sent from the renderer to the browser on behalf of the plug-in | 2075 // is sent from the renderer to the browser on behalf of the plug-in |
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2683 | 2684 |
2684 //----------------------------------------------------------------------------- | 2685 //----------------------------------------------------------------------------- |
2685 // FileSystem API messages | 2686 // FileSystem API messages |
2686 // These are messages sent from the renderer to the browser process. | 2687 // These are messages sent from the renderer to the browser process. |
2687 | 2688 |
2688 // WebFrameClient::openFileSystem() message. | 2689 // WebFrameClient::openFileSystem() message. |
2689 IPC_MESSAGE_CONTROL1(ViewHostMsg_OpenFileSystemRequest, | 2690 IPC_MESSAGE_CONTROL1(ViewHostMsg_OpenFileSystemRequest, |
2690 ViewHostMsg_OpenFileSystemRequest_Params) | 2691 ViewHostMsg_OpenFileSystemRequest_Params) |
2691 | 2692 |
2692 IPC_END_MESSAGES(ViewHost) | 2693 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |