summaryrefslogtreecommitdiffstats
path: root/chrome/app
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/app')
-rw-r--r--chrome/app/chrome_dll_main.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc
index 02f554d..99e5a6a 100644
--- a/chrome/app/chrome_dll_main.cc
+++ b/chrome/app/chrome_dll_main.cc
@@ -854,12 +854,14 @@ int ChromeMain(int argc, char** argv) {
if (process_type == switches::kRendererProcess ||
process_type == switches::kExtensionProcess) {
rv = RendererMain(main_params);
-#ifndef DISABLE_NACL
+#if !defined(DISABLE_NACL)
} else if (process_type == switches::kNaClLoaderProcess) {
rv = NaClMain(main_params);
#endif
+ } else if (process_type == switches::kWorkerProcess) {
+ rv = WorkerMain(main_params);
} else {
- NOTREACHED() << "Unknown process type";
+ NOTREACHED() << "Unknown process type: " << process_type;
}
} else {
rv = 0;