blob: 340b03b2948ef5b7c817a157d94219ab192a99b2 [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 CONTENT_PUBLIC_APP_CONTENT_UTILITY_MANIFEST_H_
#define CONTENT_PUBLIC_APP_CONTENT_UTILITY_MANIFEST_H_
#include "services/service_manager/public/cpp/manifest.h"
namespace content {
// Returns the service manifest for the "content_utility" service. Every
// utility (i.e. out-of-process service) process is an instance of this service,
// so this manifest determines what capabilities are directly exposed and
// required by service processes.
const service_manager::Manifest& GetContentUtilityManifest();
} // namespace content
#endif // CONTENT_PUBLIC_APP_CONTENT_UTILITY_MANIFEST_H_