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

Unified Diff: content/browser/renderer_host/render_message_filter.h

Issue 2488913003: Replacing allocate bitmap IPC messages with a new Mojo interface. (Closed)
Patch Set: Clean-up Created 4 years, 1 month 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/browser/renderer_host/render_message_filter.h
diff --git a/content/browser/renderer_host/render_message_filter.h b/content/browser/renderer_host/render_message_filter.h
index 1aa79618ab91d17918a38927b6edf68e2aad993e..57c5c680fd982f3d3f3305511e8b14ef99fae8f7 100644
--- a/content/browser/renderer_host/render_message_filter.h
+++ b/content/browser/renderer_host/render_message_filter.h
@@ -152,16 +152,6 @@ class CONTENT_EXPORT RenderMessageFilter
void AllocateSharedMemoryOnFileThread(uint32_t buffer_size,
IPC::Message* reply_msg);
void OnAllocateSharedMemory(uint32_t buffer_size, IPC::Message* reply_msg);
- void AllocateSharedBitmapOnFileThread(uint32_t buffer_size,
- const cc::SharedBitmapId& id,
- IPC::Message* reply_msg);
- void OnAllocateSharedBitmap(uint32_t buffer_size,
- const cc::SharedBitmapId& id,
- IPC::Message* reply_msg);
- void OnAllocatedSharedBitmap(size_t buffer_size,
- const base::SharedMemoryHandle& handle,
- const cc::SharedBitmapId& id);
- void OnDeletedSharedBitmap(const cc::SharedBitmapId& id);
void OnResolveProxy(const GURL& url, IPC::Message* reply_msg);
// Browser side discardable shared memory allocation.

Powered by Google App Engine
This is Rietveld 408576698