2012-08-07 08:47:48 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-02-13 22:36:47 +03:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-08-07 08:47:48 +04: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/. */
|
|
|
|
|
|
|
|
#include "SerializedLoadContext.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsIChannel.h"
|
2015-07-07 05:17:00 +03:00
|
|
|
#include "nsIPrivateBrowsingChannel.h"
|
2012-08-07 08:47:48 +04:00
|
|
|
#include "nsIWebSocketChannel.h"
|
|
|
|
|
|
|
|
namespace IPC {
|
|
|
|
|
|
|
|
SerializedLoadContext::SerializedLoadContext(nsILoadContext* aLoadContext)
|
|
|
|
{
|
|
|
|
Init(aLoadContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
SerializedLoadContext::SerializedLoadContext(nsIChannel* aChannel)
|
|
|
|
{
|
2012-09-18 20:04:04 +04:00
|
|
|
if (!aChannel) {
|
|
|
|
Init(nullptr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-07 08:47:48 +04:00
|
|
|
nsCOMPtr<nsILoadContext> loadContext;
|
|
|
|
NS_QueryNotificationCallbacks(aChannel, loadContext);
|
|
|
|
Init(loadContext);
|
2012-09-05 04:37:45 +04:00
|
|
|
|
|
|
|
if (!loadContext) {
|
|
|
|
// Attempt to retrieve the private bit from the channel if it has been
|
|
|
|
// overriden.
|
|
|
|
bool isPrivate = false;
|
|
|
|
bool isOverriden = false;
|
|
|
|
nsCOMPtr<nsIPrivateBrowsingChannel> pbChannel = do_QueryInterface(aChannel);
|
|
|
|
if (pbChannel &&
|
2015-02-13 22:36:37 +03:00
|
|
|
NS_SUCCEEDED(pbChannel->IsPrivateModeOverriden(&isPrivate,
|
|
|
|
&isOverriden)) &&
|
2012-09-05 04:37:45 +04:00
|
|
|
isOverriden) {
|
|
|
|
mUsePrivateBrowsing = isPrivate;
|
|
|
|
mIsPrivateBitValid = true;
|
|
|
|
}
|
2016-06-03 00:02:29 +03:00
|
|
|
mOriginAttributes.SyncAttributesWithPrivateBrowsing(mUsePrivateBrowsing);
|
2012-09-05 04:37:45 +04:00
|
|
|
}
|
2012-08-07 08:47:48 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
SerializedLoadContext::SerializedLoadContext(nsIWebSocketChannel* aChannel)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsILoadContext> loadContext;
|
2012-09-18 20:04:04 +04:00
|
|
|
if (aChannel) {
|
|
|
|
NS_QueryNotificationCallbacks(aChannel, loadContext);
|
|
|
|
}
|
2012-08-07 08:47:48 +04:00
|
|
|
Init(loadContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SerializedLoadContext::Init(nsILoadContext* aLoadContext)
|
|
|
|
{
|
|
|
|
if (aLoadContext) {
|
|
|
|
mIsNotNull = true;
|
2012-09-05 04:37:45 +04:00
|
|
|
mIsPrivateBitValid = true;
|
2012-08-07 08:47:48 +04:00
|
|
|
aLoadContext->GetIsContent(&mIsContent);
|
|
|
|
aLoadContext->GetUsePrivateBrowsing(&mUsePrivateBrowsing);
|
2016-06-03 00:02:29 +03:00
|
|
|
mOriginAttributes.SyncAttributesWithPrivateBrowsing(mUsePrivateBrowsing);
|
2014-02-11 21:00:54 +04:00
|
|
|
aLoadContext->GetUseRemoteTabs(&mUseRemoteTabs);
|
2015-09-23 11:10:21 +03:00
|
|
|
if (!aLoadContext->GetOriginAttributes(mOriginAttributes)) {
|
|
|
|
NS_WARNING("GetOriginAttributes failed");
|
|
|
|
}
|
2012-08-07 08:47:48 +04:00
|
|
|
} else {
|
|
|
|
mIsNotNull = false;
|
2012-09-05 04:37:45 +04:00
|
|
|
mIsPrivateBitValid = false;
|
2012-08-07 08:47:48 +04:00
|
|
|
// none of below values really matter when mIsNotNull == false:
|
|
|
|
// we won't be GetInterfaced to nsILoadContext
|
|
|
|
mIsContent = true;
|
|
|
|
mUsePrivateBrowsing = false;
|
2014-02-11 21:00:54 +04:00
|
|
|
mUseRemoteTabs = false;
|
2012-08-07 08:47:48 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace IPC
|