1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsExternalProtocolHandler_h___
8 #define nsExternalProtocolHandler_h___
10 #include "nsIExternalProtocolHandler.h"
13 #include "nsWeakReference.h"
14 #include "mozilla/Attributes.h"
18 // protocol handlers need to support weak references if we want the netlib
19 // nsIOService to cache them.
20 class nsExternalProtocolHandler final
: public nsIExternalProtocolHandler
,
21 public nsSupportsWeakReference
{
23 NS_DECL_THREADSAFE_ISUPPORTS
24 NS_DECL_NSIPROTOCOLHANDLER
25 NS_DECL_NSIEXTERNALPROTOCOLHANDLER
27 nsExternalProtocolHandler();
30 ~nsExternalProtocolHandler();
33 bool HaveExternalProtocolHandler(nsIURI
* aURI
);
34 nsCString m_schemeName
;
37 #endif // nsExternalProtocolHandler_h___