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

Unified Diff: content/common/render_message_filter.mojom

Issue 2717213004: Move SharedBitmapManager implementation out of content/ (Closed)
Patch Set: rebase Created 3 years, 8 months 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
« no previous file with comments | « content/common/host_shared_bitmap_manager_unittest.cc ('k') | content/public/test/mock_render_thread.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/render_message_filter.mojom
diff --git a/content/common/render_message_filter.mojom b/content/common/render_message_filter.mojom
index 78c93efe1f55c49bcbaf4cad4961e013a10d87f2..0e6cfc3c85c1cc2ea4b4a3581ba15d85892d64ba 100644
--- a/content/common/render_message_filter.mojom
+++ b/content/common/render_message_filter.mojom
@@ -4,6 +4,7 @@
module content.mojom;
+import "cc/ipc/shared_bitmap_manager.mojom";
import "content/common/native_types.mojom";
import "content/public/common/window_container_type.mojom";
import "gpu/ipc/common/mailbox.mojom";
@@ -94,14 +95,5 @@ interface RenderMessageFilter {
[Sync] CreateFullscreenWidget(int32 opener_id)
=> (int32 route_id);
- // The 2 following methods belong to a future CC related mojom.
- // For now they need to be part of this channel associated interface to
- // prevent running into message ordering issues (CC trying to access a shared
- // bitmap before the registration message below made it to the browser).
- //
- // Informs the browser that the child allocated a shared bitmap.
- AllocatedSharedBitmap(handle<shared_buffer> buffer, gpu.mojom.Mailbox id);
-
- // Informs the browser that the child deleted a shared bitmap.
- DeletedSharedBitmap(gpu.mojom.Mailbox id);
+ GetSharedBitmapManager(associated cc.mojom.SharedBitmapManager& bitmap_manager);
};
« no previous file with comments | « content/common/host_shared_bitmap_manager_unittest.cc ('k') | content/public/test/mock_render_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698