Bug 1606850 [wpt PR 21024] - Editorial: start using blocklist, a=testonly
[gecko.git] / docshell / base / nsWebNavigationInfo.h
blob5abf2e9bab3922914717a2db2001fa67d25c3fcf
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
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 nsWebNavigationInfo_h__
8 #define nsWebNavigationInfo_h__
10 #include "nsIWebNavigationInfo.h"
11 #include "nsCOMPtr.h"
12 #include "nsICategoryManager.h"
13 #include "nsStringFwd.h"
14 #include "mozilla/Attributes.h"
16 class nsWebNavigationInfo final : public nsIWebNavigationInfo {
17 public:
18 nsWebNavigationInfo() {}
20 NS_DECL_ISUPPORTS
22 NS_DECL_NSIWEBNAVIGATIONINFO
24 static uint32_t IsTypeSupported(const nsACString& aType,
25 nsIWebNavigation* aWebNav);
26 static uint32_t IsTypeSupported(const nsACString& aType,
27 bool aPluginsAllowed);
29 private:
30 ~nsWebNavigationInfo() {}
32 // Check whether aType is supported, and returns an nsIWebNavigationInfo
33 // constant.
34 static uint32_t IsTypeSupportedInternal(const nsCString& aType);
37 #endif // nsWebNavigationInfo_h__