blob: 46db5fad32d4b958e028f78eccb016462bd30c9c [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.
#include "services/proxy_resolver/proxy_resolver_service.h"
#include <utility>
#include "base/bind.h"
#include "build/build_config.h"
#include "mojo/public/cpp/bindings/strong_binding.h"
namespace proxy_resolver {
ProxyResolverService::ProxyResolverService(
service_manager::mojom::ServiceRequest request)
: service_binding_(this, std::move(request)),
service_keepalive_(&service_binding_, base::TimeDelta()) {}
ProxyResolverService::~ProxyResolverService() = default;
void ProxyResolverService::OnStart() {
registry_.AddInterface(
base::Bind(&ProxyResolverService::OnProxyResolverFactoryRequest,
base::Unretained(this)));
}
void ProxyResolverService::OnBindInterface(
const service_manager::BindSourceInfo& source_info,
const std::string& interface_name,
mojo::ScopedMessagePipeHandle interface_pipe) {
registry_.BindInterface(interface_name, std::move(interface_pipe));
}
void ProxyResolverService::OnProxyResolverFactoryRequest(
proxy_resolver::mojom::ProxyResolverFactoryRequest request) {
proxy_resolver_factory_.BindRequest(std::move(request), &service_keepalive_);
}
} // namespace proxy_resolver