| Index: ppapi/nacl_irt/ppapi_dispatcher.cc
|
| diff --git a/ppapi/nacl_irt/ppapi_dispatcher.cc b/ppapi/nacl_irt/ppapi_dispatcher.cc
|
| index ce8b8f63ecc62cc63ad9ec3c2c26935f7b79303b..059be41853532e23ac17959b292757164dccd939 100644
|
| --- a/ppapi/nacl_irt/ppapi_dispatcher.cc
|
| +++ b/ppapi/nacl_irt/ppapi_dispatcher.cc
|
| @@ -182,11 +182,6 @@
|
| // plugin.
|
| proxy::InterfaceList::SetProcessGlobalPermissions(args.permissions);
|
|
|
| - // Notify the renderer process, if necessary.
|
| - ManifestService* manifest_service = GetManifestService();
|
| - if (manifest_service)
|
| - manifest_service->StartupInitializationComplete();
|
| -
|
| int32_t error = ::PPP_InitializeModule(
|
| 0 /* module */,
|
| &proxy::PluginDispatcher::GetBrowserInterface);
|
| @@ -206,6 +201,11 @@
|
| }
|
| // From here, the dispatcher will manage its own lifetime according to the
|
| // lifetime of the attached channel.
|
| +
|
| + // Notify the renderer process, if necessary.
|
| + ManifestService* manifest_service = GetManifestService();
|
| + if (manifest_service)
|
| + manifest_service->StartupInitializationComplete();
|
| }
|
|
|
| void PpapiDispatcher::OnPluginDispatcherMessageReceived(
|
|
|