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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 1248713002: ozone: ClientPixmapManager passes VGEM fd from browser to renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove waitable_event Created 5 years, 4 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
Index: content/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index bd83892fbfe61f01926a02d90d7b366c08d3b486..8ce8f40bd9082f9b6937ea35870f4ffcc330cc9b 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -191,6 +191,8 @@
#endif
#if defined(USE_OZONE)
+#include "ui/ozone/public/client_native_pixmap_factory.h"
+#include "ui/ozone/public/ozone_platform.h"
#include "ui/ozone/public/ozone_switches.h"
#endif
@@ -1606,6 +1608,12 @@ void RenderProcessHostImpl::OnChannelConnected(int32 peer_pid) {
GetID());
Send(new ChildProcessMsg_SetIOSurfaceManagerToken(io_surface_manager_token_));
#endif
+#if defined(USE_OZONE)
+ base::ScopedFD device_fd =
+ ui::OzonePlatform::GetInstance()->OpenClientNativePixmapDevice();
+ Send(new ChildProcessMsg_InitializeClientNativePixmapFactory(
+ base::FileDescriptor(device_fd.Pass())));
no sievers 2015/08/26 22:07:21 nit: same here
dshwang 2015/08/27 09:12:12 Done.
+#endif
}
void RenderProcessHostImpl::OnChannelError() {

Powered by Google App Engine
This is Rietveld 408576698