PPAPI_PLUGIN_PROCESS_EXITED property
final
Indicates that a PPAPI plugin process ended unexpectedly. This failure is not fatal. Your application does not need to handle recovery for this event.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_PROCESS_FAILED_KIND_PPAPI_PLUGIN_PROCESS_EXITED)
Implementation
static final PPAPI_PLUGIN_PROCESS_EXITED =
ProcessFailedKind._internalMultiPlatform(
'PPAPI_PLUGIN_PROCESS_EXITED',
() {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 7;
default:
break;
}
return null;
},
);