2015-02-13 22:36:47 +03: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 15:12:37 +04: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 21:33:27 +03:00
|
|
|
|
|
|
|
#ifndef nsWebNavigationInfo_h__
|
|
|
|
#define nsWebNavigationInfo_h__
|
|
|
|
|
|
|
|
#include "nsIWebNavigationInfo.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsICategoryManager.h"
|
2017-08-17 02:48:52 +03:00
|
|
|
#include "nsStringFwd.h"
|
2012-07-11 07:59:52 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2005-02-27 21:33:27 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsWebNavigationInfo final : public nsIWebNavigationInfo {
|
2005-02-27 21:33:27 +03:00
|
|
|
public:
|
|
|
|
nsWebNavigationInfo() {}
|
2015-02-13 22:36:37 +03:00
|
|
|
|
2005-02-27 21:33:27 +03:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
NS_DECL_NSIWEBNAVIGATIONINFO
|
|
|
|
|
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
private:
|
|
|
|
~nsWebNavigationInfo() {}
|
2015-02-13 22:36:37 +03:00
|
|
|
|
2005-02-27 21:33:27 +03:00
|
|
|
// Check whether aType is supported. If this method throws, the
|
|
|
|
// value of aIsSupported is not changed.
|
|
|
|
nsresult IsTypeSupportedInternal(const nsCString& aType,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t* aIsSupported);
|
2015-02-13 22:36:37 +03:00
|
|
|
|
2005-02-27 21:33:27 +03:00
|
|
|
nsCOMPtr<nsICategoryManager> mCategoryManager;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsWebNavigationInfo_h__
|