diff options
author | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-05 21:53:50 +0000 |
---|---|---|
committer | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-05 21:53:50 +0000 |
commit | 246a7045b9c45620fd725210aac51322e611c83f (patch) | |
tree | 6bdce605ae758c282a2b27e92a6b223d98b8d46a /ipc | |
parent | c3240722a63ff142684575e3ea4eb89915edae72 (diff) | |
download | chromium_src-246a7045b9c45620fd725210aac51322e611c83f.zip chromium_src-246a7045b9c45620fd725210aac51322e611c83f.tar.gz chromium_src-246a7045b9c45620fd725210aac51322e611c83f.tar.bz2 |
Added support for opening a GPU command buffer from a renderer processes through a GPU channel.
Probably only works in windows only so far.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/657046
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40783 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_channel_handle.h | 2 | ||||
-rw-r--r-- | ipc/ipc_message_utils.h | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ipc/ipc_channel_handle.h b/ipc/ipc_channel_handle.h index e3b2f3e..2342429 100644 --- a/ipc/ipc_channel_handle.h +++ b/ipc/ipc_channel_handle.h @@ -5,6 +5,8 @@ #ifndef IPC_IPC_CHANNEL_HANDLE_H_ #define IPC_IPC_CHANNEL_HANDLE_H_ +#include <string> + #include "build/build_config.h" #if defined(OS_POSIX) diff --git a/ipc/ipc_message_utils.h b/ipc/ipc_message_utils.h index 9a8ccf4..670ce87 100644 --- a/ipc/ipc_message_utils.h +++ b/ipc/ipc_message_utils.h @@ -45,11 +45,12 @@ enum IPCMessageStart { WorkerMsgStart, WorkerHostMsgStart, NaClProcessMsgStart, - CommandBufferMsgStart, + GpuCommandBufferMsgStart, UtilityMsgStart, UtilityHostMsgStart, GpuMsgStart, GpuHostMsgStart, + GpuChannelMsgStart, // NOTE: When you add a new message class, also update // IPCStatusView::IPCStatusView to ensure logging works. LastMsgIndex |