Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #ifndef nsParserCIID_h__ |
michael@0 | 7 | #define nsParserCIID_h__ |
michael@0 | 8 | |
michael@0 | 9 | #include "nsISupports.h" |
michael@0 | 10 | #include "nsIFactory.h" |
michael@0 | 11 | #include "nsIComponentManager.h" |
michael@0 | 12 | |
michael@0 | 13 | // {2ce606b0-bee6-11d1-aad9-00805f8a3e14} |
michael@0 | 14 | #define NS_PARSER_CID \ |
michael@0 | 15 | { 0x2ce606b0, 0xbee6, 0x11d1, { 0xaa, 0xd9, 0x0, 0x80, 0x5f, 0x8a, 0x3e, 0x14 } } |
michael@0 | 16 | |
michael@0 | 17 | // XXX: This object should not be exposed outside of the parser. |
michael@0 | 18 | // Remove when CNavDTD subclasses do not need access |
michael@0 | 19 | #define NS_PARSER_NODE_IID \ |
michael@0 | 20 | {0x9039c670, 0x2717, 0x11d2, \ |
michael@0 | 21 | {0x92, 0x46, 0x00, 0x80, 0x5f, 0x8a, 0x7a, 0xb6}} |
michael@0 | 22 | |
michael@0 | 23 | // {a6cf9107-15b3-11d2-932e-00805f8add32} |
michael@0 | 24 | #define NS_CNAVDTD_CID \ |
michael@0 | 25 | { 0xa6cf9107, 0x15b3, 0x11d2, { 0x93, 0x2e, 0x0, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } |
michael@0 | 26 | |
michael@0 | 27 | // {FFF4FBE9-528A-4b37-819D-FC18F3A401A7} |
michael@0 | 28 | #define NS_EXPAT_DRIVER_CID \ |
michael@0 | 29 | { 0xfff4fbe9, 0x528a, 0x4b37, { 0x81, 0x9d, 0xfc, 0x18, 0xf3, 0xa4, 0x1, 0xa7 } } |
michael@0 | 30 | |
michael@0 | 31 | // {a6cf910f-15b3-11d2-932e-00805f8add32} |
michael@0 | 32 | #define NS_HTMLCONTENTSINKSTREAM_CID \ |
michael@0 | 33 | { 0xa6cf910f, 0x15b3, 0x11d2, { 0x93, 0x2e, 0x0, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } |
michael@0 | 34 | |
michael@0 | 35 | // {a6cf9112-15b3-11d2-932e-00805f8add32} |
michael@0 | 36 | #define NS_PARSERSERVICE_CID \ |
michael@0 | 37 | { 0xa6cf9112, 0x15b3, 0x11d2, { 0x93, 0x2e, 0x0, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } |
michael@0 | 38 | |
michael@0 | 39 | #endif |