Bug 1807268 - Fix verifyOpenAllInNewTabsOptionTest UI test r=ohorvath
[gecko.git] / docshell / base / nsWebNavigationInfo.h
blob97b07c825eafdaa6c2230bef62648a69e8a3f894
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);
26 private:
27 ~nsWebNavigationInfo() {}
29 // Check whether aType is supported, and returns an nsIWebNavigationInfo
30 // constant.
31 static uint32_t IsTypeSupportedInternal(const nsCString& aType);
34 #endif // nsWebNavigationInfo_h__