Index: content/browser/child_process_launcher.cc |
diff --git a/content/browser/child_process_launcher.cc b/content/browser/child_process_launcher.cc |
index 0abbc60cc3b654fba90ea5fe8f7c2051d55768e1..4804349ea263b1069d2d7903b4454b75cc38ca5d 100644 |
--- a/content/browser/child_process_launcher.cc |
+++ b/content/browser/child_process_launcher.cc |
@@ -372,6 +372,9 @@ void ChildProcessLauncher::Launch( |
cmd_line->GetSwitchValueASCII(switches::kProcessType); |
CHECK(process_type == switches::kGpuProcess || |
process_type == switches::kRendererProcess || |
+#if defined(ENABLE_PLUGINS) |
+ process_type == switches::kPpapiPluginProcess || |
+#endif |
process_type == switches::kUtilityProcess) |
<< "Unsupported process type: " << process_type; |