1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/base/public/nsIDOMFormData.idl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#include "nsISupports.idl" 1.10 + 1.11 +interface nsIVariant; 1.12 + 1.13 +[scriptable, uuid(256c9139-5a29-41e1-8698-f9f9aae7d6cf)] 1.14 +interface nsIDOMFormData : nsISupports 1.15 +{ 1.16 + void append(in DOMString name, in nsIVariant value); 1.17 +}; 1.18 + 1.19 +%{ C++ 1.20 +#define NS_FORMDATA_CID \ 1.21 +{ 0x6b192618, 0x26f2, 0x426e, \ 1.22 + { 0xa7, 0xac, 0x1e, 0x13, 0xa6, 0xa4, 0x52, 0x2b } } 1.23 + 1.24 +#define NS_FORMDATA_CONTRACTID "@mozilla.org/files/formdata;1" 1.25 +%}