2014-12-01 18:55:15 +03:00
|
|
|
// -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
// vim: set ts=2 et sw=2 tw=80:
|
|
|
|
// This Source Code is subject to the terms of the Mozilla Public License
|
|
|
|
// version 2.0 (the "License"). You can obtain a copy of the License at
|
|
|
|
// http://mozilla.org/MPL/2.0/.
|
2001-12-08 03:25:28 +03:00
|
|
|
#ifndef nsTextToSubURI_h__
|
|
|
|
#define nsTextToSubURI_h__
|
|
|
|
|
|
|
|
#include "nsITextToSubURI.h"
|
2014-05-08 13:32:00 +04:00
|
|
|
#include "nsString.h"
|
2014-12-01 18:55:15 +03:00
|
|
|
#include "nsTArray.h"
|
2018-11-24 15:04:34 +03:00
|
|
|
#include "mozilla/net/IDNBlocklistUtils.h"
|
2001-12-08 03:25:28 +03:00
|
|
|
|
2014-12-01 18:55:15 +03:00
|
|
|
class nsTextToSubURI : public nsITextToSubURI {
|
2001-12-08 03:25:28 +03:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSITEXTTOSUBURI
|
|
|
|
|
2002-08-12 23:23:22 +04:00
|
|
|
private:
|
2014-06-24 02:40:02 +04:00
|
|
|
virtual ~nsTextToSubURI();
|
|
|
|
|
2014-12-01 18:55:15 +03:00
|
|
|
// We assume that the URI is encoded as UTF-8.
|
2017-06-20 12:19:05 +03:00
|
|
|
nsresult convertURItoUnicode(const nsCString& aCharset, const nsCString& aURI,
|
2002-08-12 23:23:22 +04:00
|
|
|
nsAString& _retval);
|
2014-11-08 05:42:04 +03:00
|
|
|
|
2018-11-24 01:40:29 +03:00
|
|
|
// Characters defined in netwerk/dns/IDNCharacterBlocklist.inc or via the
|
|
|
|
// network.IDN.extra_allowed_chars and network.IDN.extra_blocked_chars prefs.
|
2018-11-24 15:04:34 +03:00
|
|
|
nsTArray<mozilla::net::BlocklistRange> mIDNBlocklist;
|
2001-12-08 03:25:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsTextToSubURI_h__
|