michael@0: /* -*- Mode: c++; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*- 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 michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef NSEXTERNALURLHANDLERSERVICE_H michael@0: #define NSEXTERNALURLHANDLERSERVICE_H michael@0: michael@0: #include "nsIExternalURLHandlerService.h" michael@0: michael@0: // {4BF1F8EF-D947-4BA3-9CD3-8C9A54A63A1C} michael@0: #define NS_EXTERNALURLHANDLERSERVICE_CID \ michael@0: {0x4bf1f8ef, 0xd947, 0x4ba3, {0x9c, 0xd3, 0x8c, 0x9a, 0x54, 0xa6, 0x3a, 0x1c}} michael@0: michael@0: class nsExternalURLHandlerService MOZ_FINAL michael@0: : public nsIExternalURLHandlerService michael@0: { michael@0: public: michael@0: NS_DECL_ISUPPORTS michael@0: NS_DECL_NSIEXTERNALURLHANDLERSERVICE michael@0: michael@0: nsExternalURLHandlerService(); michael@0: private: michael@0: ~nsExternalURLHandlerService(); michael@0: }; michael@0: michael@0: #endif // NSEXTERNALURLHANDLERSERVICE_H