1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/system/nsIOSFileConstantsService.idl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */ 1.5 +/* vim: set ts=2 et sw=2 tw=40: */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +#include "nsISupports.idl" 1.11 + 1.12 +[scriptable, uuid(d6dd239f-34d6-4b34-baa1-f69ab4a20bc4)] 1.13 +interface nsIOSFileConstantsService: nsISupports 1.14 +{ 1.15 + /** 1.16 + * Inject module OS.Constants in the environment. 1.17 + * 1.18 + * This method must be called only from the main thread. 1.19 + * Method is idempotent. 1.20 + */ 1.21 + [implicit_jscontext] 1.22 + void init(); 1.23 +}; 1.24 + 1.25 +%{ C++ 1.26 + 1.27 +// {4BBE1B96-8956-457F-A03F-9C27435F2AFA} 1.28 +#define OSFILECONSTANTSSERVICE_CID {0x4BBE1B96,0x8956,0x457F,{0xA0,0x3F,0x9C,0x27,0x43,0x5F,0x2A,0xFA}} 1.29 +#define OSFILECONSTANTSSERVICE_CONTRACTID "@mozilla.org/net/osfileconstantsservice;1" 1.30 + 1.31 +%}