PPAPI_BROKER_PROCESS_EXITED property
final
Indicates that a PPAPI plugin broker 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_BROKER_PROCESS_EXITED)
Implementation
static final PPAPI_BROKER_PROCESS_EXITED =
ProcessFailedKind._internalMultiPlatform(
'PPAPI_BROKER_PROCESS_EXITED',
() {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 8;
default:
break;
}
return null;
},
);