mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-01-05 22:48:06 +01:00
cc0db5f166
OSR tests will be fixed by a follow-up merge of Viz support (see issue #2575).
18 lines
728 B
C++
18 lines
728 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_PACKAGED_SERVICE_MANIFESTS_H_
|
|
#define CEF_LIBCEF_COMMON_SERVICE_MANIFESTS_CEF_PACKAGED_SERVICE_MANIFESTS_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "services/service_manager/public/cpp/manifest.h"
|
|
|
|
// Returns manifests for all shared (i.e. cross-profile) services packaged by
|
|
// CEF but not packaged by Content. This includes both in- and out-of-process
|
|
// services.
|
|
const std::vector<service_manager::Manifest>& GetBuiltinServiceManifests();
|
|
|
|
#endif // CEF_LIBCEF_COMMON_SERVICE_MANIFESTS_CEF_PACKAGED_SERVICE_MANIFESTS_H_
|