Index: content/utility/utility_thread_impl.cc |
diff --git a/content/utility/utility_thread_impl.cc b/content/utility/utility_thread_impl.cc |
index 26af2b17a06ae523c4e7c01d755698731fc631c4..d1b9bfae87622393eb5b1ee976b2d621e027e3f8 100644 |
--- a/content/utility/utility_thread_impl.cc |
+++ b/content/utility/utility_thread_impl.cc |
@@ -40,7 +40,10 @@ UtilityThreadImpl::UtilityThreadImpl() : single_process_(false) { |
} |
UtilityThreadImpl::UtilityThreadImpl(const std::string& channel_name) |
- : ChildThreadImpl(Options(channel_name, false)), |
+ : ChildThreadImpl(Options::Builder() |
+ .InBrowserProcess(true) |
+ .WithChannelName(channel_name) |
+ .Build()), |
single_process_(true) { |
Init(); |
} |