2015-02-13 11:36:47 -08: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: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 04:12:37 -07:00
|
|
|
* 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 nsDocShellLoadInfo_h__
|
|
|
|
#define nsDocShellLoadInfo_h__
|
|
|
|
|
|
|
|
// Helper Classes
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
|
|
|
|
// Interfaces Needed
|
|
|
|
#include "nsIDocShellLoadInfo.h"
|
2013-09-03 13:17:26 -07:00
|
|
|
|
|
|
|
class nsIInputStream;
|
|
|
|
class nsISHEntry;
|
|
|
|
class nsIURI;
|
2014-01-12 23:58:16 -08:00
|
|
|
class nsIDocShell;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsDocShellLoadInfo : public nsIDocShellLoadInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDocShellLoadInfo();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIDOCSHELLLOADINFO
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual ~nsDocShellLoadInfo();
|
|
|
|
|
|
|
|
protected:
|
2015-02-13 11:36:37 -08:00
|
|
|
nsCOMPtr<nsIURI> mReferrer;
|
2015-09-29 23:54:39 -07:00
|
|
|
nsCOMPtr<nsIURI> mOriginalURI;
|
2015-10-05 03:33:00 -07:00
|
|
|
bool mLoadReplace;
|
2015-02-13 11:36:37 -08:00
|
|
|
nsCOMPtr<nsISupports> mOwner;
|
|
|
|
bool mInheritOwner;
|
|
|
|
bool mOwnerIsExplicit;
|
|
|
|
bool mSendReferrer;
|
|
|
|
nsDocShellInfoReferrerPolicy mReferrerPolicy;
|
|
|
|
nsDocShellInfoLoadType mLoadType;
|
|
|
|
nsCOMPtr<nsISHEntry> mSHEntry;
|
|
|
|
nsString mTarget;
|
|
|
|
nsCOMPtr<nsIInputStream> mPostDataStream;
|
|
|
|
nsCOMPtr<nsIInputStream> mHeadersStream;
|
|
|
|
bool mIsSrcdocLoad;
|
|
|
|
nsString mSrcdocData;
|
|
|
|
nsCOMPtr<nsIDocShell> mSourceDocShell;
|
|
|
|
nsCOMPtr<nsIURI> mBaseURI;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsDocShellLoadInfo_h__ */
|