Index: chrome/browser/utility_process_host.cc |
=================================================================== |
--- chrome/browser/utility_process_host.cc (revision 27895) |
+++ chrome/browser/utility_process_host.cc (working copy) |
@@ -64,6 +64,13 @@ |
} |
bool UtilityProcessHost::StartProcess(const FilePath& exposed_dir) { |
+#if defined(OS_POSIX) |
+ // TODO(port): We should not reach here on linux (crbug.com/22703) or |
+ // MacOS (crbug.com/8102) until problems related to autoupdate are fixed. |
+ NOTREACHED(); |
+ return false; |
+#endif |
+ |
// Name must be set or metrics_service will crash in any test which |
// launches a UtilityProcessHost. |
set_name(L"utility process"); |