manifests.h 478 B

12345678910111213141516
  1. // Copyright (c) 2019 GitHub, Inc.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #ifndef ATOM_APP_MANIFESTS_H_
  5. #define ATOM_APP_MANIFESTS_H_
  6. #include <vector>
  7. #include "services/service_manager/public/cpp/manifest.h"
  8. const service_manager::Manifest& GetElectronContentBrowserOverlayManifest();
  9. const std::vector<service_manager::Manifest>&
  10. GetElectronPackagedServicesOverlayManifest();
  11. #endif // ATOM_APP_MANIFESTS_H_