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

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

Issue 2485623002: discardable_memory: Using mojo IPC to replace Chrome IPC (Closed)
Patch Set: Rebase 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 99fcd059a1cba0e16d4b3c02599ecfc1123a9dc7..c10b76ae547ad3bad29955f2a91a2d41a18e3146 100644
--- a/content/browser/renderer_host/render_message_filter.h
+++ b/content/browser/renderer_host/render_message_filter.h
@@ -20,7 +20,6 @@
#include "base/strings/string16.h"
#include "build/build_config.h"
#include "cc/resources/shared_bitmap_manager.h"
-#include "components/discardable_memory/service/discardable_shared_memory_manager.h"
#include "content/common/cache_storage/cache_storage_types.h"
#include "content/common/host_shared_bitmap_manager.h"
#include "content/common/render_message_filter.mojom.h"
@@ -161,20 +160,6 @@ class CONTENT_EXPORT RenderMessageFilter
void OnDeletedSharedBitmap(const cc::SharedBitmapId& id);
void OnResolveProxy(const GURL& url, IPC::Message* reply_msg);
- // Browser side discardable shared memory allocation.
- void AllocateLockedDiscardableSharedMemoryOnFileThread(
- uint32_t size,
- discardable_memory::DiscardableSharedMemoryId id,
- IPC::Message* reply_message);
- void OnAllocateLockedDiscardableSharedMemory(
- uint32_t size,
- discardable_memory::DiscardableSharedMemoryId id,
- IPC::Message* reply_message);
- void DeletedDiscardableSharedMemoryOnFileThread(
- discardable_memory::DiscardableSharedMemoryId id);
- void OnDeletedDiscardableSharedMemory(
- discardable_memory::DiscardableSharedMemoryId id);
-
#if defined(OS_LINUX)
void SetThreadPriorityOnFileThread(base::PlatformThreadId ns_tid,
base::ThreadPriority priority);

Powered by Google App Engine
This is Rietveld 408576698