c9b7806418
* chore: bump chromium in DEPS to 129.0.6645.0 * chore: update patches * chore: bump chromium in DEPS to 129.0.6646.0 * refactor: remove ppapi dependency PPAPI removal - https://issues.chromium.org/issues/40511450 PDF viewer migration - https://issues.chromium.org/issues/40511452 * chore: update patches * chore: enable `content_enable_legacy_ipc` We were indirectly relying on this via `enable_ppapi=true`, with 633a57d9b62da7850ef7946f6b101ed440d04cdd ppapi is now disabled and this commit makes the dependency explicit. * fix: gn check --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: deepak1556 <hop2deep@gmail.com>
21 lines
634 B
Text
21 lines
634 B
Text
module electron.mojom;
|
|
|
|
import "content/public/common/webplugininfo.mojom";
|
|
import "mojo/public/mojom/base/string16.mojom";
|
|
import "url/mojom/origin.mojom";
|
|
import "url/mojom/url.mojom";
|
|
|
|
struct PluginInfo {
|
|
content.mojom.WebPluginInfo plugin;
|
|
string actual_mime_type;
|
|
};
|
|
|
|
interface ElectronPluginInfoHost {
|
|
// Return information about a plugin for the given URL and MIME type.
|
|
// Includes specific reasons why a plugin can't be used, for example because
|
|
// it's disabled.
|
|
[Sync]
|
|
GetPluginInfo(url.mojom.Url url,
|
|
url.mojom.Origin origin,
|
|
string mime_type) => (PluginInfo plugin_info);
|
|
};
|