16 lines
760 B
C
16 lines
760 B
C
// Copyright 2018 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 CEF_LIBCEF_COMMON_SERVICE_MANIFESTS_CEF_CONTENT_RENDERER_OVERLAY_MANIFEST_H_
|
|
#define CEF_LIBCEF_COMMON_SERVICE_MANIFESTS_CEF_CONTENT_RENDERER_OVERLAY_MANIFEST_H_
|
|
|
|
#include "services/service_manager/public/cpp/manifest.h"
|
|
|
|
// Returns the Manifest CEF amends to Content's content_renderer service
|
|
// manifest. This allows CEF to extend the set of capabilities exposed and/or
|
|
// required by content_renderer service instances.
|
|
const service_manager::Manifest& GetCefContentRendererOverlayManifest();
|
|
|
|
#endif // CEF_LIBCEF_COMMON_SERVICE_MANIFESTS_CEF_CONTENT_RENDERER_OVERLAY_MANIFEST_H_
|