2014-07-09 23:56:37 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-02-13 11:36:47 -08:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2014-07-09 23:56: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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_LoadInfo_h
|
|
|
|
#define mozilla_LoadInfo_h
|
|
|
|
|
2014-07-16 13:16:12 -07:00
|
|
|
#include "nsIContentPolicy.h"
|
2014-07-09 23:56:37 -07:00
|
|
|
#include "nsILoadInfo.h"
|
2014-07-16 13:16:12 -07:00
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "nsIWeakReferenceUtils.h" // for nsWeakPtr
|
2014-11-04 16:34:00 -08:00
|
|
|
#include "nsIURI.h"
|
2015-07-19 19:11:03 -07:00
|
|
|
#include "nsTArray.h"
|
2014-07-16 13:16:12 -07:00
|
|
|
|
|
|
|
class nsINode;
|
2014-07-09 23:56:37 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2015-01-07 15:51:20 -08:00
|
|
|
namespace net {
|
2015-07-13 22:43:13 -07:00
|
|
|
class OptionalLoadInfoArgs;
|
2015-07-13 08:25:42 -07:00
|
|
|
} // namespace net
|
2015-06-18 15:37:20 -07:00
|
|
|
|
|
|
|
namespace ipc {
|
|
|
|
// we have to forward declare that function so we can use it as a friend.
|
|
|
|
nsresult
|
2015-07-13 22:43:13 -07:00
|
|
|
LoadInfoArgsToLoadInfo(const mozilla::net::OptionalLoadInfoArgs& aLoadInfoArgs,
|
2015-06-18 15:37:20 -07:00
|
|
|
nsILoadInfo** outLoadInfo);
|
2015-07-13 08:25:42 -07:00
|
|
|
} // namespace ipc
|
2015-01-07 15:51:20 -08:00
|
|
|
|
2014-07-09 23:56:37 -07:00
|
|
|
/**
|
|
|
|
* Class that provides an nsILoadInfo implementation.
|
2015-04-02 11:35:40 -07:00
|
|
|
*
|
|
|
|
* Note that there is no reason why this class should be MOZ_EXPORT, but
|
|
|
|
* Thunderbird relies on some insane hacks which require this, so we'll leave it
|
|
|
|
* as is for now, but hopefully we'll be able to remove the MOZ_EXPORT keyword
|
|
|
|
* from this class at some point. See bug 1149127 for the discussion.
|
2014-07-09 23:56:37 -07:00
|
|
|
*/
|
2015-04-02 11:35:40 -07:00
|
|
|
class MOZ_EXPORT LoadInfo final : public nsILoadInfo
|
2014-07-09 23:56:37 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSILOADINFO
|
|
|
|
|
2014-11-14 08:55:59 -08:00
|
|
|
// aLoadingPrincipal MUST NOT BE NULL.
|
|
|
|
LoadInfo(nsIPrincipal* aLoadingPrincipal,
|
|
|
|
nsIPrincipal* aTriggeringPrincipal,
|
2014-07-16 13:16:12 -07:00
|
|
|
nsINode* aLoadingContext,
|
|
|
|
nsSecurityFlags aSecurityFlags,
|
2015-08-19 10:43:30 -07:00
|
|
|
nsContentPolicyType aContentPolicyType);
|
2014-07-09 23:56:37 -07:00
|
|
|
|
|
|
|
private:
|
2015-01-07 15:51:20 -08:00
|
|
|
// private constructor that is only allowed to be called from within
|
|
|
|
// HttpChannelParent and FTPChannelParent declared as friends undeneath.
|
|
|
|
// In e10s we can not serialize nsINode, hence we store the innerWindowID.
|
2015-07-19 19:11:03 -07:00
|
|
|
// Please note that aRedirectChain uses swapElements.
|
2015-01-07 15:51:20 -08:00
|
|
|
LoadInfo(nsIPrincipal* aLoadingPrincipal,
|
|
|
|
nsIPrincipal* aTriggeringPrincipal,
|
|
|
|
nsSecurityFlags aSecurityFlags,
|
|
|
|
nsContentPolicyType aContentPolicyType,
|
2015-07-10 13:57:55 -07:00
|
|
|
bool aUpgradeInsecureRequests,
|
2015-05-08 12:52:49 -07:00
|
|
|
uint64_t aInnerWindowID,
|
|
|
|
uint64_t aOuterWindowID,
|
2015-07-19 19:11:03 -07:00
|
|
|
uint64_t aParentOuterWindowID,
|
2015-07-19 19:11:57 -07:00
|
|
|
bool aEnforceSecurity,
|
|
|
|
bool aInitialSecurityCheckDone,
|
2015-07-19 19:11:03 -07:00
|
|
|
nsTArray<nsCOMPtr<nsIPrincipal>>& aRedirectChain);
|
2015-01-07 15:51:20 -08:00
|
|
|
|
2015-06-18 15:37:20 -07:00
|
|
|
friend nsresult
|
2015-07-13 22:43:13 -07:00
|
|
|
mozilla::ipc::LoadInfoArgsToLoadInfo(
|
|
|
|
const mozilla::net::OptionalLoadInfoArgs& aLoadInfoArgs,
|
|
|
|
nsILoadInfo** outLoadInfo);
|
2015-01-07 15:51:20 -08:00
|
|
|
|
2014-07-09 23:56:37 -07:00
|
|
|
~LoadInfo();
|
|
|
|
|
2015-07-19 19:11:57 -07:00
|
|
|
nsCOMPtr<nsIPrincipal> mLoadingPrincipal;
|
|
|
|
nsCOMPtr<nsIPrincipal> mTriggeringPrincipal;
|
|
|
|
nsWeakPtr mLoadingContext;
|
|
|
|
nsSecurityFlags mSecurityFlags;
|
|
|
|
nsContentPolicyType mContentPolicyType;
|
|
|
|
bool mUpgradeInsecureRequests;
|
|
|
|
uint64_t mInnerWindowID;
|
|
|
|
uint64_t mOuterWindowID;
|
|
|
|
uint64_t mParentOuterWindowID;
|
|
|
|
bool mEnforceSecurity;
|
|
|
|
bool mInitialSecurityCheckDone;
|
2015-07-19 19:11:03 -07:00
|
|
|
nsTArray<nsCOMPtr<nsIPrincipal>> mRedirectChain;
|
2014-07-09 23:56:37 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_LoadInfo_h
|
|
|
|
|