| Index: content/renderer/browser_plugin/browser_plugin.cc
|
| diff --git a/content/renderer/browser_plugin/browser_plugin.cc b/content/renderer/browser_plugin/browser_plugin.cc
|
| index 561801091e30a7ebf64d3c4608d2da864fdfaad0..699237624350543557535721f86d92f108b81cde 100644
|
| --- a/content/renderer/browser_plugin/browser_plugin.cc
|
| +++ b/content/renderer/browser_plugin/browser_plugin.cc
|
| @@ -66,6 +66,8 @@ static std::string TerminationStatusToString(base::TerminationStatus status) {
|
| return "abnormal";
|
| case base::TERMINATION_STATUS_PROCESS_WAS_KILLED:
|
| return "killed";
|
| + case base::TERMINATION_STATUS_PROCESS_CRASHED:
|
| + return "crashed";
|
| default:
|
| // This should never happen.
|
| DCHECK(false);
|
|
|