diff options
Diffstat (limited to 'chrome/app/chrome_dll_main.cc')
-rw-r--r-- | chrome/app/chrome_dll_main.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc index db9f045..b865817 100644 --- a/chrome/app/chrome_dll_main.cc +++ b/chrome/app/chrome_dll_main.cc @@ -275,9 +275,10 @@ static void AdjustLinuxOOMScore(const std::string& process_type) { // Pass - browser / zygote process stays at 0. } else if (process_type == switches::kExtensionProcess || process_type == switches::kRendererProcess) { - // Set in chrome/browser/zygote_host_linux.cc. - NOTREACHED() << "process type '" << process_type << "' " + LOG(WARNING) << "process type '" << process_type << "' " << "should go through the zygote."; + // When debugging, these process types can end up being run directly. + return; } else { NOTREACHED() << "Unknown process type"; } |