blob: aeef1fdd3dde5adab2d8bf43e213eb69d70f4aea [file] [log] [blame]
// Copyright (c) 2012 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 CONTENT_PUBLIC_UTILITY_CONTENT_UTILITY_CLIENT_H_
#define CONTENT_PUBLIC_UTILITY_CONTENT_UTILITY_CLIENT_H_
#include <map>
#include <memory>
#include "base/callback_forward.h"
#include "content/public/common/content_client.h"
#include "services/service_manager/public/cpp/binder_registry.h"
#include "services/service_manager/public/cpp/embedded_service_info.h"
#include "services/service_manager/public/cpp/service.h"
#include "services/service_manager/public/mojom/service.mojom.h"
namespace content {
// Embedder API for participating in utility process logic.
class CONTENT_EXPORT ContentUtilityClient {
public:
using StaticServiceMap =
std::map<std::string, service_manager::EmbeddedServiceInfo>;
virtual ~ContentUtilityClient() {}
// Notifies us that the UtilityThread has been created.
virtual void UtilityThreadStarted() {}
// Allows the embedder to filter messages.
virtual bool OnMessageReceived(const IPC::Message& message);
virtual void RegisterServices(StaticServiceMap* services) {}
// Allows the embedder to handle an incoming service request. If this is
// called, this utility process was started for the sole purpose of running
// the service identified by |service_name|. If this returns null, the process
// will imminently be terminated. If it returns non-null, the process will run
// until the returned Service implementation terminates itself.
virtual std::unique_ptr<service_manager::Service> HandleServiceRequest(
const std::string& service_name,
service_manager::mojom::ServiceRequest request);
virtual void RegisterNetworkBinders(
service_manager::BinderRegistry* registry) {}
virtual void RegisterAudioBinders(service_manager::BinderRegistry* registry) {
}
};
} // namespace content
#endif // CONTENT_PUBLIC_UTILITY_CONTENT_UTILITY_CLIENT_H_