| 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 d290778c2ef396872a90bc8ac67359e78b6a3f7e..f27f3c643c913c7250d20a15161b411a8cc57b5e 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -191,6 +191,7 @@
|
| #endif
|
|
|
| #if defined(USE_OZONE)
|
| +#include "content/browser/gpu/browser_client_native_pixmap_factory_ozone.h"
|
| #include "ui/ozone/public/ozone_switches.h"
|
| #endif
|
|
|
| @@ -1591,6 +1592,9 @@ void RenderProcessHostImpl::OnChannelConnected(int32 peer_pid) {
|
| GetID());
|
| Send(new ChildProcessMsg_SetIOSurfaceManagerToken(io_surface_manager_token_));
|
| #endif
|
| +#if defined(USE_OZONE)
|
| + BrowserClientNativePixmapFactory::GetInstance()->SendVirtualDevice(this);
|
| +#endif
|
| }
|
|
|
| void RenderProcessHostImpl::OnChannelError() {
|
|
|