mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-26 06:38:36 +00:00
Bug 879092 - Have different runtime abort messages for the different error types. r=jlebar
This commit is contained in:
parent
15f4e6899b
commit
544e8798b3
@ -950,12 +950,17 @@ ContentChild::ProcessingError(Result what)
|
||||
QuickExit();
|
||||
|
||||
case MsgNotKnown:
|
||||
NS_RUNTIMEABORT("aborting because of MsgNotKnown");
|
||||
case MsgNotAllowed:
|
||||
NS_RUNTIMEABORT("aborting because of MsgNotAllowed");
|
||||
case MsgPayloadError:
|
||||
NS_RUNTIMEABORT("aborting because of MsgPayloadError");
|
||||
case MsgProcessingError:
|
||||
NS_RUNTIMEABORT("aborting because of MsgProcessingError");
|
||||
case MsgRouteError:
|
||||
NS_RUNTIMEABORT("aborting because of MsgRouteError");
|
||||
case MsgValueError:
|
||||
NS_RUNTIMEABORT("aborting because of fatal error");
|
||||
NS_RUNTIMEABORT("aborting because of MsgValueError");
|
||||
|
||||
default:
|
||||
NS_RUNTIMEABORT("not reached");
|
||||
|
Loading…
x
Reference in New Issue
Block a user