Chromium Code Reviews| Index: content/browser/utility_process_host_impl.cc |
| diff --git a/content/browser/utility_process_host_impl.cc b/content/browser/utility_process_host_impl.cc |
| index 277a2cf25f3e7bf9a6e252257ef2c010a82cc1c0..3742efb0aacd35031e20aed69abb43a74c7d3f6c 100644 |
| --- a/content/browser/utility_process_host_impl.cc |
| +++ b/content/browser/utility_process_host_impl.cc |
| @@ -148,9 +148,8 @@ bool UtilityProcessHostImpl::StartProcess() { |
| if (channel_id.empty()) |
| return false; |
| - // Single process not supported in multiple dll mode currently. |
| - if (RenderProcessHost::run_renderer_in_process() && |
| - g_utility_main_thread_factory) { |
| + if (RenderProcessHost::run_renderer_in_process()) { |
| + CHECK(g_utility_main_thread_factory); |
|
piman
2013/11/07 22:09:52
Should be DCHECK.
|
| // See comment in RenderProcessHostImpl::Init() for the background on why we |
| // support single process mode this way. |
| in_process_thread_.reset(g_utility_main_thread_factory(channel_id)); |