Index: content/browser/ppapi_plugin_process_host.cc |
diff --git a/content/browser/ppapi_plugin_process_host.cc b/content/browser/ppapi_plugin_process_host.cc |
index 19d434485e9ccef46093d1e6ac4db6f951192dc6..725c1e6431bd2f33fa0679620eb071a9712c4e7e 100644 |
--- a/content/browser/ppapi_plugin_process_host.cc |
+++ b/content/browser/ppapi_plugin_process_host.cc |
@@ -330,7 +330,7 @@ PpapiPluginProcessHost::PpapiPluginProcessHost( |
permissions_ = ppapi::PpapiPermissions::GetForCommandLine(base_permissions); |
process_.reset(new BrowserChildProcessHostImpl( |
- PROCESS_TYPE_PPAPI_PLUGIN, this, mojo_child_token_)); |
+ PROCESS_TYPE_PPAPI_PLUGIN, this, mojo_child_token_, 0, nullptr)); |
host_impl_.reset(new BrowserPpapiHostImpl(this, permissions_, info.name, |
info.path, profile_data_directory, |
@@ -355,7 +355,7 @@ PpapiPluginProcessHost::PpapiPluginProcessHost() |
: is_broker_(true), |
mojo_child_token_(mojo::edk::GenerateRandomToken()) { |
process_.reset(new BrowserChildProcessHostImpl( |
- PROCESS_TYPE_PPAPI_BROKER, this, mojo_child_token_)); |
+ PROCESS_TYPE_PPAPI_BROKER, this, mojo_child_token_, 0, nullptr)); |
ppapi::PpapiPermissions permissions; // No permissions. |
// The plugin name, path and profile data directory shouldn't be needed for |