mirror of
https://github.com/electron/electron.git
synced 2026-02-26 03:01:17 -05:00
* chore: bump chromium in DEPS to 108.0.5359.4 * chore: update patches * fixup! Change content::PluginList to only run on the UI thread. (cherry picked from commit7b5ec87d4f) Co-Authored-By: Robo <hop2deep@gmail.com> (cherry picked from commit76a618e7d0) * chore: bump chromium in DEPS to 108.0.5359.10 * chore: update patches * fixup printing patch https://github.com/electron/electron/pull/35375 accidentally broke https://github.com/electron/electron/pull/34711 Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
24 lines
631 B
C++
24 lines
631 B
C++
// Copyright (c) 2022 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_COMMON_PLUGIN_INFO_H_
|
|
#define ELECTRON_SHELL_COMMON_PLUGIN_INFO_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "content/public/common/content_plugin_info.h"
|
|
#include "electron/buildflags/buildflags.h"
|
|
|
|
namespace electron {
|
|
|
|
void GetInternalPlugins(std::vector<content::WebPluginInfo>* plugins);
|
|
|
|
#if BUILDFLAG(ENABLE_PDF_VIEWER)
|
|
content::WebPluginInfo GetPDFPluginInfo();
|
|
#endif // BUILDFLAG(ENABLE_PDF_VIEWER)
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_COMMON_PLUGIN_INFO_H_
|