blob: 6fa90acb53cfb20b6372b4b424877fa0eb5a769e [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_UTILITY_SERVICES_H_
#define CHROME_UTILITY_SERVICES_H_
namespace mojo {
class ServiceFactory;
}
// Helpers to run out-of-process services in a dedicated utility process. All
// out-of-process services will need to have their implementation hooked up in
// one of these helpers.
mojo::ServiceFactory* GetMainThreadServiceFactory();
mojo::ServiceFactory* GetIOThreadServiceFactory();
#endif // CHROME_UTILITY_SERVICES_H_