#ifndef CONTENT_UTILITY_SERVICES_H_
#define CONTENT_UTILITY_SERVICES_H_
#include "content/common/content_export.h"
#include "services/service_manager/public/cpp/binder_registry.h"
namespace mojo {
class ServiceFactory;
}
namespace content {
NetworkBinderCreationCallback;
CONTENT_EXPORT void SetNetworkBinderCreationCallbackForTesting(
NetworkBinderCreationCallback callback);
void RegisterIOThreadServices(mojo::ServiceFactory& services);
void RegisterMainThreadServices(mojo::ServiceFactory& services);
}
#endif