mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* chore: bump chromium in DEPS to 76.0.3804.1 * chore: update patches * chore: update v8 patches * chore: bump chromium in DEPS to 76.0.3805.1 * chore: bump chromium in DEPS to 76.0.3805.2 * chore: bump chromium in DEPS to 76.0.3805.3 * chore: update patches * Remove content_packaged_services https://chromium-review.googlesource.com/c/chromium/src/+/1604203 * chore: fix false positive lint error * views: wireup widget name to crash data https://chromium-review.googlesource.com/c/chromium/src/+/1626640 * chore: bump chromium in DEPS to 76.0.3805.4
17 lines
486 B
C++
17 lines
486 B
C++
// Copyright (c) 2019 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ATOM_APP_MANIFESTS_H_
|
|
#define ATOM_APP_MANIFESTS_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "services/service_manager/public/cpp/manifest.h"
|
|
|
|
const service_manager::Manifest& GetElectronContentBrowserOverlayManifest();
|
|
const std::vector<service_manager::Manifest>&
|
|
GetElectronBuiltinServiceManifests();
|
|
|
|
#endif // ATOM_APP_MANIFESTS_H_
|