2012-08-06 21:47:48 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set sw=2 ts=8 et tw=80 : */
|
|
|
|
/* 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 LoadContext_h
|
|
|
|
#define LoadContext_h
|
|
|
|
|
|
|
|
#include "SerializedLoadContext.h"
|
2012-08-10 11:28:07 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2012-08-21 23:47:23 -07:00
|
|
|
#include "nsWeakReference.h"
|
2012-12-29 01:02:16 -08:00
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
|
|
|
|
class mozIApplication;
|
2012-08-06 21:47:48 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class that provides nsILoadContext info in Parent process. Typically copied
|
|
|
|
* from Child via SerializedLoadContext.
|
|
|
|
*
|
|
|
|
* Note: this is not the "normal" or "original" nsILoadContext. That is
|
|
|
|
* typically provided by nsDocShell. This is only used when the original
|
|
|
|
* docshell is in a different process and we need to copy certain values from
|
|
|
|
* it.
|
|
|
|
*/
|
|
|
|
|
2012-08-10 11:28:07 -07:00
|
|
|
class LoadContext MOZ_FINAL : public nsILoadContext
|
2012-08-06 21:47:48 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSILOADCONTEXT
|
|
|
|
|
2012-12-29 01:02:16 -08:00
|
|
|
// AppId/inBrowser arguments override those in SerializedLoadContext provided
|
|
|
|
// by child process.
|
|
|
|
LoadContext(const IPC::SerializedLoadContext& aToCopy,
|
|
|
|
nsIDOMElement* aTopFrameElement,
|
|
|
|
uint32_t aAppId, bool aInBrowser)
|
2013-06-23 00:15:05 -07:00
|
|
|
: mTopFrameElement(do_GetWeakReference(aTopFrameElement))
|
|
|
|
, mAppId(aAppId)
|
2012-08-21 23:47:23 -07:00
|
|
|
, mIsContent(aToCopy.mIsContent)
|
|
|
|
, mUsePrivateBrowsing(aToCopy.mUsePrivateBrowsing)
|
2012-12-29 01:02:16 -08:00
|
|
|
, mIsInBrowserElement(aInBrowser)
|
2013-06-23 00:15:05 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
, mIsNotNull(aToCopy.mIsNotNull)
|
|
|
|
#endif
|
2012-08-06 21:47:48 -07:00
|
|
|
{}
|
|
|
|
|
|
|
|
private:
|
2013-06-23 00:15:05 -07:00
|
|
|
nsWeakPtr mTopFrameElement;
|
|
|
|
uint32_t mAppId;
|
2012-08-06 21:47:48 -07:00
|
|
|
bool mIsContent;
|
|
|
|
bool mUsePrivateBrowsing;
|
|
|
|
bool mIsInBrowserElement;
|
2013-06-23 00:15:05 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
bool mIsNotNull;
|
|
|
|
#endif
|
2012-08-06 21:47:48 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // LoadContext_h
|
|
|
|
|