Bug 1676529 [wpt PR 26467] - [LayoutNG] Find sibling spanners using the child iterato...
[gecko.git] / widget / android / nsAndroidProtocolHandler.h
blob811b02e45cd7c197b599964c0235c32936bb86ba
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsAndroidProtocolHandler_h___
7 #define nsAndroidProtocolHandler_h___
9 #include "nsIProtocolHandler.h"
10 #include "nsWeakReference.h"
11 #include "mozilla/Attributes.h"
13 #define NS_ANDROIDPROTOCOLHANDLER_CID \
14 { /* e9cd2b7f-8386-441b-aaf5-0b371846bfd0 */ \
15 0xe9cd2b7f, 0x8386, 0x441b, { 0x0b, 0x37, 0x18, 0x46, 0xbf, 0xd0 } \
18 class nsAndroidProtocolHandler final : public nsIProtocolHandler,
19 public nsSupportsWeakReference {
20 public:
21 NS_DECL_THREADSAFE_ISUPPORTS
23 // nsIProtocolHandler methods:
24 NS_DECL_NSIPROTOCOLHANDLER
26 // nsAndroidProtocolHandler methods:
27 nsAndroidProtocolHandler() {}
29 private:
30 ~nsAndroidProtocolHandler() {}
33 #endif /* nsAndroidProtocolHandler_h___ */