2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef NSDEFAULTURIFIXUP_H
|
|
|
|
#define NSDEFAULTURIFIXUP_H
|
|
|
|
|
|
|
|
#include "nsIURIFixup.h"
|
|
|
|
|
|
|
|
/* Header file */
|
|
|
|
class nsDefaultURIFixup : public nsIURIFixup
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIURIFIXUP
|
|
|
|
|
|
|
|
nsDefaultURIFixup();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~nsDefaultURIFixup();
|
|
|
|
|
|
|
|
private:
|
|
|
|
/* additional members */
|
|
|
|
nsresult FileURIFixup(const nsACString &aStringURI, nsIURI** aURI);
|
|
|
|
nsresult ConvertFileToStringURI(const nsACString& aIn, nsCString& aOut);
|
2013-05-01 04:04:21 -07:00
|
|
|
void KeywordURIFixup(const nsACString &aStringURI, nsIInputStream** aPostData, nsIURI** aURI);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool PossiblyByteExpandedFileName(const nsAString& aIn);
|
|
|
|
bool PossiblyHostPortUrl(const nsACString& aUrl);
|
|
|
|
bool MakeAlternateURI(nsIURI *aURI);
|
|
|
|
bool IsLikelyFTP(const nsCString& aHostSpec);
|
2007-03-22 10:30:00 -07:00
|
|
|
const char * GetFileSystemCharset();
|
|
|
|
const char * GetCharsetForUrlBar();
|
|
|
|
|
2008-07-17 08:05:20 -07:00
|
|
|
nsCString mFsCharset;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|