2015-02-13 19:36:47 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2005-02-27 18:33:27 +00:00
|
|
|
|
|
|
|
#ifndef nsWebNavigationInfo_h__
|
|
|
|
#define nsWebNavigationInfo_h__
|
|
|
|
|
|
|
|
#include "nsIWebNavigationInfo.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsICategoryManager.h"
|
2017-08-16 23:48:52 +00:00
|
|
|
#include "nsStringFwd.h"
|
2012-07-11 03:59:52 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2005-02-27 18:33:27 +00:00
|
|
|
|
2018-11-30 10:46:48 +00:00
|
|
|
class nsWebNavigationInfo final : public nsIWebNavigationInfo {
|
|
|
|
public:
|
2005-02-27 18:33:27 +00:00
|
|
|
nsWebNavigationInfo() {}
|
2015-02-13 19:36:37 +00:00
|
|
|
|
2005-02-27 18:33:27 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
NS_DECL_NSIWEBNAVIGATIONINFO
|
|
|
|
|
2021-09-09 15:03:05 +00:00
|
|
|
static uint32_t IsTypeSupported(const nsACString& aType);
|
2005-02-27 18:33:27 +00:00
|
|
|
|
2018-11-30 10:46:48 +00:00
|
|
|
private:
|
2005-02-27 18:33:27 +00:00
|
|
|
~nsWebNavigationInfo() {}
|
2015-02-13 19:36:37 +00:00
|
|
|
|
2019-12-17 03:01:37 +00:00
|
|
|
// Check whether aType is supported, and returns an nsIWebNavigationInfo
|
|
|
|
// constant.
|
|
|
|
static uint32_t IsTypeSupportedInternal(const nsCString& aType);
|
2005-02-27 18:33:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsWebNavigationInfo_h__
|