PluginCrashedEvent.webidl (976B)
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* This Source Code Form is subject to the terms of the Mozilla Public 3 * License, v. 2.0. If a copy of the MPL was not distributed with this file, 4 * You can obtain one at http://mozilla.org/MPL/2.0/. 5 */ 6 7 [ChromeOnly, 8 Exposed=Window] 9 interface PluginCrashedEvent : Event 10 { 11 constructor(DOMString type, 12 optional PluginCrashedEventInit eventInitDict = {}); 13 14 readonly attribute unsigned long pluginID; 15 readonly attribute DOMString pluginDumpID; 16 readonly attribute DOMString pluginName; 17 readonly attribute DOMString? pluginFilename; 18 readonly attribute boolean submittedCrashReport; 19 readonly attribute boolean gmpPlugin; 20 }; 21 22 dictionary PluginCrashedEventInit : EventInit 23 { 24 unsigned long pluginID = 0; 25 DOMString pluginDumpID = ""; 26 DOMString pluginName = ""; 27 DOMString? pluginFilename = null; 28 boolean submittedCrashReport = false; 29 boolean gmpPlugin = false; 30 };