diff options
author | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-14 18:50:28 +0000 |
---|---|---|
committer | jbauman@chromium.org <jbauman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-14 18:50:28 +0000 |
commit | 7407ad6a55334063610f5cca5bfb225085c2586c (patch) | |
tree | cbe450026a2b240b9bb30ebd081971ae1cae8c1b /content/common/child_process_messages.h | |
parent | b999632dd3e2070d872cd0546fab7b6ea8e319a8 (diff) | |
download | chromium_src-7407ad6a55334063610f5cca5bfb225085c2586c.zip chromium_src-7407ad6a55334063610f5cca5bfb225085c2586c.tar.gz chromium_src-7407ad6a55334063610f5cca5bfb225085c2586c.tar.bz2 |
Revert 256955 "Add shared bitmap managers for browser and render..."
Seems to be causing renderer crashes and possibly out-of-memory issues.
> Add shared bitmap managers for browser and renderer processes.
>
> The shared bitmap managers will allow software tiles to be allocated in shared memory, so delegated rendering could be used with them.
>
> BUG=327220
> R=danakj@chromium.org, jschuh@chromium.org, piman@chromium.org
>
> Review URL: https://codereview.chromium.org/148243013
TBR=jbauman@chromium.org
BUG=352689,352616,352618
Review URL: https://codereview.chromium.org/197703004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257161 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/child_process_messages.h')
-rw-r--r-- | content/common/child_process_messages.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/content/common/child_process_messages.h b/content/common/child_process_messages.h index f220891..5700c48 100644 --- a/content/common/child_process_messages.h +++ b/content/common/child_process_messages.h @@ -11,7 +11,6 @@ #include "base/memory/shared_memory.h" #include "base/tracked_objects.h" #include "base/values.h" -#include "cc/resources/shared_bitmap_manager.h" #include "content/common/content_export.h" #include "ipc/ipc_message_macros.h" #include "ui/gfx/gpu_memory_buffer.h" @@ -147,23 +146,6 @@ IPC_SYNC_MESSAGE_CONTROL1_1(ChildProcessHostMsg_SyncAllocateSharedMemory, uint32 /* buffer size */, base::SharedMemoryHandle) -// Asks the browser to create a block of shared memory for the child process to -// fill in and pass back to the browser. -IPC_SYNC_MESSAGE_CONTROL2_1(ChildProcessHostMsg_SyncAllocateSharedBitmap, - uint32 /* buffer size */, - cc::SharedBitmapId, - base::SharedMemoryHandle) - -// Informs the browser that the child allocated a shared bitmap. -IPC_MESSAGE_CONTROL3(ChildProcessHostMsg_AllocatedSharedBitmap, - uint32 /* buffer size */, - base::SharedMemoryHandle, - cc::SharedBitmapId) - -// Informs the browser that the child deleted a shared bitmap. -IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_DeletedSharedBitmap, - cc::SharedBitmapId) - #if defined(USE_TCMALLOC) // Reply to ChildProcessMsg_GetTcmallocStats. IPC_MESSAGE_CONTROL1(ChildProcessHostMsg_TcmallocStats, |