Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(662)

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 3834003: On Windows, create a new TransportDIB::Handle struct which includes the file (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Rebase Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after
1269 gfx::Size /* size */) 1269 gfx::Size /* size */)
1270 1270
1271 // Sent to update part of the view. In response to this message, the host 1271 // Sent to update part of the view. In response to this message, the host
1272 // generates a ViewMsg_UpdateRect_ACK message. 1272 // generates a ViewMsg_UpdateRect_ACK message.
1273 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateRect, 1273 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateRect,
1274 ViewHostMsg_UpdateRect_Params) 1274 ViewHostMsg_UpdateRect_Params)
1275 1275
1276 // Sent to create, update and destroy video layers. 1276 // Sent to create, update and destroy video layers.
1277 IPC_MESSAGE_ROUTED1(ViewHostMsg_CreateVideo, 1277 IPC_MESSAGE_ROUTED1(ViewHostMsg_CreateVideo,
1278 gfx::Size /* size */) 1278 gfx::Size /* size */)
1279 IPC_MESSAGE_ROUTED2(ViewHostMsg_UpdateVideo, 1279 IPC_MESSAGE_ROUTED3(ViewHostMsg_UpdateVideo,
1280 TransportDIB::Id /* bitmap */, 1280 TransportDIB::Id /* bitmap_id */,
1281 TransportDIB::Handle /* bitmap_handle */,
1281 gfx::Rect /* bitmap_rect */) 1282 gfx::Rect /* bitmap_rect */)
1282 IPC_MESSAGE_ROUTED0(ViewHostMsg_DestroyVideo) 1283 IPC_MESSAGE_ROUTED0(ViewHostMsg_DestroyVideo)
1283 1284
1284 // Sent by the renderer when GPU compositing is enabled or disabled to notify 1285 // Sent by the renderer when GPU compositing is enabled or disabled to notify
1285 // the browser whether or not is should do paiting. 1286 // the browser whether or not is should do paiting.
1286 IPC_MESSAGE_ROUTED1(ViewHostMsg_GpuRenderingActivated, 1287 IPC_MESSAGE_ROUTED1(ViewHostMsg_GpuRenderingActivated,
1287 bool /* true if the GPU process renders to window */) 1288 bool /* true if the GPU process renders to window */)
1288 1289
1289 // Acknowledges receipt of a ViewMsg_HandleInputEvent message. 1290 // Acknowledges receipt of a ViewMsg_HandleInputEvent message.
1290 // Payload is a WebInputEvent::Type which is the type of the event, followed 1291 // Payload is a WebInputEvent::Type which is the type of the event, followed
(...skipping 1727 matching lines...) Expand 10 before | Expand all | Expand 10 after
3018 base::PlatformFileInfo, /* info */ 3019 base::PlatformFileInfo, /* info */
3019 base::PlatformFileError /* error_code */) 3020 base::PlatformFileError /* error_code */)
3020 3021
3021 // Get the directory's contents. 3022 // Get the directory's contents.
3022 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, 3023 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents,
3023 FilePath /* path */, 3024 FilePath /* path */,
3024 PepperDirContents, /* contents */ 3025 PepperDirContents, /* contents */
3025 base::PlatformFileError /* error_code */) 3026 base::PlatformFileError /* error_code */)
3026 3027
3027 IPC_END_MESSAGES(ViewHost) 3028 IPC_END_MESSAGES(ViewHost)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698