diff options
Diffstat (limited to 'chromium/content/utility/services.cc')
-rw-r--r-- | chromium/content/utility/services.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chromium/content/utility/services.cc b/chromium/content/utility/services.cc index d27de48acad..4a49a840b2d 100644 --- a/chromium/content/utility/services.cc +++ b/chromium/content/utility/services.cc @@ -194,6 +194,8 @@ auto RunXrDeviceService( mojo::ServiceFactory& GetIOThreadServiceFactory() { static base::NoDestructor<mojo::ServiceFactory> factory{ + // The network service runs on the IO thread because it needs a message + // loop of type IO that can get notified when pipes have data. RunNetworkService, }; return *factory; |