Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */ |
michael@0 | 2 | /* vim: set ts=2 et sw=2 tw=40: */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #include "nsISupports.idl" |
michael@0 | 8 | |
michael@0 | 9 | [scriptable, uuid(d6dd239f-34d6-4b34-baa1-f69ab4a20bc4)] |
michael@0 | 10 | interface nsIOSFileConstantsService: nsISupports |
michael@0 | 11 | { |
michael@0 | 12 | /** |
michael@0 | 13 | * Inject module OS.Constants in the environment. |
michael@0 | 14 | * |
michael@0 | 15 | * This method must be called only from the main thread. |
michael@0 | 16 | * Method is idempotent. |
michael@0 | 17 | */ |
michael@0 | 18 | [implicit_jscontext] |
michael@0 | 19 | void init(); |
michael@0 | 20 | }; |
michael@0 | 21 | |
michael@0 | 22 | %{ C++ |
michael@0 | 23 | |
michael@0 | 24 | // {4BBE1B96-8956-457F-A03F-9C27435F2AFA} |
michael@0 | 25 | #define OSFILECONSTANTSSERVICE_CID {0x4BBE1B96,0x8956,0x457F,{0xA0,0x3F,0x9C,0x27,0x43,0x5F,0x2A,0xFA}} |
michael@0 | 26 | #define OSFILECONSTANTSSERVICE_CONTRACTID "@mozilla.org/net/osfileconstantsservice;1" |
michael@0 | 27 | |
michael@0 | 28 | %} |