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

Unified Diff: content/common/child_process_messages.h

Issue 2514923002: content: Use mus client-lib's gpu-service from renderers. (Closed)
Patch Set: . Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: content/common/child_process_messages.h
diff --git a/content/common/child_process_messages.h b/content/common/child_process_messages.h
index e757ca19dd3a265ee8f48dd59c3dd61d7bf6df3c..8c7151c567dddc25dd841f019ec35e35bd4217ee 100644
--- a/content/common/child_process_messages.h
+++ b/content/common/child_process_messages.h
@@ -137,14 +137,6 @@ IPC_MESSAGE_CONTROL0(ChildProcessMsg_Resume)
////////////////////////////////////////////////////////////////////////////////
// Messages sent from the child process to the browser.
-// A renderer sends this when it wants to create a connection to the GPU
-// process. The browser will create the GPU process if necessary, and will
-// return a handle to the channel via a GpuChannelEstablished message.
-IPC_SYNC_MESSAGE_CONTROL0_3(ChildProcessHostMsg_EstablishGpuChannel,
- int /* client id */,
- IPC::ChannelHandle /* handle to channel */,
- gpu::GPUInfo /* stats about GPU process*/)
-
// A renderer sends this when it wants to know whether a gpu process exists.
IPC_SYNC_MESSAGE_CONTROL0_1(ChildProcessHostMsg_HasGpuProcess,
bool /* result */)
@@ -179,20 +171,6 @@ IPC_SYNC_MESSAGE_CONTROL1_0(ChildProcessHostMsg_PreCacheFont,
IPC_MESSAGE_CONTROL0(ChildProcessHostMsg_ReleaseCachedFonts)
#endif // defined(OS_WIN)
-// Asks the browser to create a gpu memory buffer.
-IPC_SYNC_MESSAGE_CONTROL5_1(ChildProcessHostMsg_SyncAllocateGpuMemoryBuffer,
- gfx::GpuMemoryBufferId /* new_id */,
- uint32_t /* width */,
- uint32_t /* height */,
- gfx::BufferFormat,
- gfx::BufferUsage,
- gfx::GpuMemoryBufferHandle)
-
-// Informs the browser that the child deleted a gpu memory buffer.
-IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_DeletedGpuMemoryBuffer,
- gfx::GpuMemoryBufferId,
- gpu::SyncToken /* sync_token */)
-
#if defined(OS_LINUX)
// Asks the browser to change the priority of thread.
IPC_MESSAGE_CONTROL2(ChildProcessHostMsg_SetThreadPriority,
« no previous file with comments | « content/child/child_gpu_memory_buffer_manager.cc ('k') | content/public/app/mojo/content_browser_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698