michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this file, michael@0: * You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "domstubs.idl" michael@0: #include "nsIDOMEvent.idl" michael@0: michael@0: [scriptable, uuid(30eaf0b9-8f3f-49fe-818e-7b7d9fbf8f95), builtinclass] michael@0: interface nsIDOMDeviceStorageChangeEvent : nsIDOMEvent michael@0: { michael@0: michael@0: [noscript] void initDeviceStorageChangeEvent(in DOMString eventTypeArg, michael@0: in boolean canBubbleArg, michael@0: in boolean cancelableArg, michael@0: in DOMString path, michael@0: in DOMString reason); michael@0: michael@0: readonly attribute DOMString path; michael@0: readonly attribute DOMString reason; michael@0: };