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"
|
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 {
|
|
|
|
class HttpChannelParent;
|
|
|
|
class FTPChannelParent;
|
2015-02-17 10:09:58 -08:00
|
|
|
class WebSocketChannelParent;
|
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,
|
2014-11-04 16:34:00 -08:00
|
|
|
nsContentPolicyType aContentPolicyType,
|
|
|
|
nsIURI* aBaseURI = nullptr);
|
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.
|
|
|
|
LoadInfo(nsIPrincipal* aLoadingPrincipal,
|
|
|
|
nsIPrincipal* aTriggeringPrincipal,
|
|
|
|
nsSecurityFlags aSecurityFlags,
|
|
|
|
nsContentPolicyType aContentPolicyType,
|
|
|
|
uint32_t aInnerWindowID);
|
|
|
|
|
|
|
|
friend class net::HttpChannelParent;
|
|
|
|
friend class net::FTPChannelParent;
|
2015-02-17 10:09:58 -08:00
|
|
|
friend class net::WebSocketChannelParent;
|
2015-01-07 15:51:20 -08:00
|
|
|
|
2014-07-09 23:56:37 -07:00
|
|
|
~LoadInfo();
|
|
|
|
|
2014-11-14 08:55:59 -08:00
|
|
|
nsCOMPtr<nsIPrincipal> mLoadingPrincipal;
|
|
|
|
nsCOMPtr<nsIPrincipal> mTriggeringPrincipal;
|
2015-02-13 11:36:37 -08:00
|
|
|
nsWeakPtr mLoadingContext;
|
|
|
|
nsSecurityFlags mSecurityFlags;
|
|
|
|
nsContentPolicyType mContentPolicyType;
|
|
|
|
nsCOMPtr<nsIURI> mBaseURI;
|
|
|
|
uint32_t mInnerWindowID;
|
2014-07-09 23:56:37 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_LoadInfo_h
|
|
|
|
|