2014-12-01 15:55:15 +00: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 00:25:28 +00:00
|
|
|
#ifndef nsTextToSubURI_h__
|
|
|
|
#define nsTextToSubURI_h__
|
|
|
|
|
|
|
|
#include "nsITextToSubURI.h"
|
2014-05-08 09:32:00 +00:00
|
|
|
#include "nsString.h"
|
2014-12-01 15:55:15 +00:00
|
|
|
#include "nsTArray.h"
|
2001-12-08 00:25:28 +00:00
|
|
|
|
2014-12-01 15:55:15 +00:00
|
|
|
class nsTextToSubURI: public nsITextToSubURI
|
|
|
|
{
|
2001-12-08 00:25:28 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSITEXTTOSUBURI
|
|
|
|
|
2002-08-12 19:23:22 +00:00
|
|
|
private:
|
2014-06-23 22:40:02 +00:00
|
|
|
virtual ~nsTextToSubURI();
|
|
|
|
|
2014-12-01 15:55:15 +00:00
|
|
|
// We assume that the URI is encoded as UTF-8.
|
2002-08-12 19:23:22 +00:00
|
|
|
nsresult convertURItoUnicode(const nsAFlatCString &aCharset,
|
|
|
|
const nsAFlatCString &aURI,
|
|
|
|
nsAString &_retval);
|
2014-11-08 02:42:04 +00:00
|
|
|
|
2014-12-01 15:55:15 +00:00
|
|
|
// Characters from the pref "network.IDN.blacklist_chars", or a built-in
|
|
|
|
// fallback if reading the pref fails.
|
|
|
|
nsTArray<char16_t> mUnsafeChars;
|
2001-12-08 00:25:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsTextToSubURI_h__
|