Chromium Code Reviews| Index: content/app/content_main_runner.cc |
| diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc |
| index da27afaaf017aa36d9ca79c77b98cbf032ac72f3..b09ff031a32afd28672c2395e00c834347abe5b2 100644 |
| --- a/content/app/content_main_runner.cc |
| +++ b/content/app/content_main_runner.cc |
| @@ -437,6 +437,11 @@ int RunNamedProcessTypeMain( |
| CreateInProcessRendererThread); |
| GpuProcessHost::RegisterGpuMainThreadFactory( |
| CreateInProcessGpuThread); |
| +#else |
| + // SingleProcess and InProcessGPU mode are not supported |
| + // in multiple-dll mode currently. |
| + CHECK(!(command_line.HasSwitch(switches::kSingleProcess) || |
| + command_line.HasSwitch(switches::kInProcessGPU))); |
|
piman
2013/11/07 22:09:52
I suspect some people currently use that. What's b
dshwang
2013/11/08 10:05:56
under defined(CHROME_MULTIPLE_DLL_BROWSER), we don
|
| #endif |
| for (size_t i = 0; i < arraysize(kMainFunctions); ++i) { |