|
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
|
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/. */ |
|
6 |
|
7 #ifndef nsExternalProtocolHandler_h___ |
|
8 #define nsExternalProtocolHandler_h___ |
|
9 |
|
10 #include "nsIExternalProtocolHandler.h" |
|
11 #include "nsCOMPtr.h" |
|
12 #include "nsString.h" |
|
13 #include "nsWeakReference.h" |
|
14 #include "nsIExternalProtocolService.h" |
|
15 #include "mozilla/Attributes.h" |
|
16 |
|
17 class nsIURI; |
|
18 |
|
19 // protocol handlers need to support weak references if we want the netlib nsIOService to cache them. |
|
20 class nsExternalProtocolHandler MOZ_FINAL : public nsIExternalProtocolHandler, public nsSupportsWeakReference |
|
21 { |
|
22 public: |
|
23 NS_DECL_THREADSAFE_ISUPPORTS |
|
24 NS_DECL_NSIPROTOCOLHANDLER |
|
25 NS_DECL_NSIEXTERNALPROTOCOLHANDLER |
|
26 |
|
27 nsExternalProtocolHandler(); |
|
28 ~nsExternalProtocolHandler(); |
|
29 |
|
30 protected: |
|
31 // helper function |
|
32 bool HaveExternalProtocolHandler(nsIURI * aURI); |
|
33 nsCString m_schemeName; |
|
34 }; |
|
35 |
|
36 #endif // nsExternalProtocolHandler_h___ |
|
37 |