gecko/docshell/base/LoadContext.h

50 lines
1.3 KiB
C++

/* -*- 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"
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.
*/
class LoadContext : public nsILoadContext
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSILOADCONTEXT
LoadContext(const IPC::SerializedLoadContext& toCopy)
: mIsNotNull(toCopy.mIsNotNull)
, mIsContent(toCopy.mIsContent)
, mUsePrivateBrowsing(toCopy.mUsePrivateBrowsing)
, mIsInBrowserElement(toCopy.mIsInBrowserElement)
, mAppId(toCopy.mAppId)
{}
private:
bool mIsNotNull;
bool mIsContent;
bool mUsePrivateBrowsing;
bool mIsInBrowserElement;
PRUint32 mAppId;
};
} // namespace mozilla
#endif // LoadContext_h