blob: 00d7a5200632b88dff0743b23e20cd7196966eac [file] [log] [blame]
// Copyright 2017 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 COMPONENTS_SERVICES_PATCH_PATCH_SERVICE_H_
#define COMPONENTS_SERVICES_PATCH_PATCH_SERVICE_H_
#include "base/macros.h"
#include "services/service_manager/public/cpp/service.h"
#include "services/service_manager/public/cpp/service_binding.h"
#include "services/service_manager/public/cpp/service_keepalive.h"
namespace patch {
class PatchService : public service_manager::Service {
public:
explicit PatchService(service_manager::mojom::ServiceRequest request);
~PatchService() override;
void OnBindInterface(const service_manager::BindSourceInfo& source_info,
const std::string& interface_name,
mojo::ScopedMessagePipeHandle interface_pipe) override;
private:
service_manager::ServiceBinding binding_;
service_manager::ServiceKeepalive keepalive_;
DISALLOW_COPY_AND_ASSIGN(PatchService);
};
} // namespace patch
#endif // COMPONENTS_SERVICES_PATCH_PATCH_SERVICE_H_