mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
116 lines
4.5 KiB
C++
116 lines
4.5 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 mozilla_net_HttpChannelParent_h
|
|
#define mozilla_net_HttpChannelParent_h
|
|
|
|
#include "nsHttp.h"
|
|
#include "mozilla/dom/PBrowserParent.h"
|
|
#include "mozilla/net/PHttpChannelParent.h"
|
|
#include "mozilla/net/NeckoCommon.h"
|
|
#include "nsIParentRedirectingChannel.h"
|
|
#include "nsIProgressEventSink.h"
|
|
#include "nsITabParent.h"
|
|
#include "nsHttpChannel.h"
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
class nsICacheEntryDescriptor;
|
|
class nsIAssociatedContentSecurity;
|
|
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
class HttpChannelParentListener;
|
|
|
|
class HttpChannelParent : public PHttpChannelParent
|
|
, public nsIParentRedirectingChannel
|
|
, public nsIProgressEventSink
|
|
, public nsIInterfaceRequestor
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIREQUESTOBSERVER
|
|
NS_DECL_NSISTREAMLISTENER
|
|
NS_DECL_NSIPARENTCHANNEL
|
|
NS_DECL_NSIPARENTREDIRECTINGCHANNEL
|
|
NS_DECL_NSIPROGRESSEVENTSINK
|
|
NS_DECL_NSIINTERFACEREQUESTOR
|
|
|
|
HttpChannelParent(PBrowserParent* iframeEmbedding);
|
|
virtual ~HttpChannelParent();
|
|
|
|
protected:
|
|
virtual bool RecvAsyncOpen(const IPC::URI& uri,
|
|
const IPC::URI& originalUri,
|
|
const IPC::URI& docUri,
|
|
const IPC::URI& referrerUri,
|
|
const PRUint32& loadFlags,
|
|
const RequestHeaderTuples& requestHeaders,
|
|
const nsHttpAtom& requestMethod,
|
|
const IPC::InputStream& uploadStream,
|
|
const bool& uploadStreamHasHeaders,
|
|
const PRUint16& priority,
|
|
const PRUint8& redirectionLimit,
|
|
const bool& allowPipelining,
|
|
const bool& forceAllowThirdPartyCookie,
|
|
const bool& doResumeAt,
|
|
const PRUint64& startPos,
|
|
const nsCString& entityID,
|
|
const bool& chooseApplicationCache,
|
|
const nsCString& appCacheClientID,
|
|
const bool& allowSpdy,
|
|
const bool& usingPrivateBrowsing);
|
|
|
|
virtual bool RecvConnectChannel(const PRUint32& channelId);
|
|
virtual bool RecvSetPriority(const PRUint16& priority);
|
|
virtual bool RecvSetCacheTokenCachedCharset(const nsCString& charset);
|
|
virtual bool RecvSuspend();
|
|
virtual bool RecvResume();
|
|
virtual bool RecvCancel(const nsresult& status);
|
|
virtual bool RecvRedirect2Verify(const nsresult& result,
|
|
const RequestHeaderTuples& changedHeaders);
|
|
virtual bool RecvUpdateAssociatedContentSecurity(const PRInt32& high,
|
|
const PRInt32& low,
|
|
const PRInt32& broken,
|
|
const PRInt32& no);
|
|
virtual bool RecvDocumentChannelCleanup();
|
|
virtual bool RecvMarkOfflineCacheEntryAsForeign();
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why);
|
|
|
|
protected:
|
|
friend class mozilla::net::HttpChannelParentListener;
|
|
nsCOMPtr<nsITabParent> mTabParent;
|
|
|
|
private:
|
|
nsCOMPtr<nsIChannel> mChannel;
|
|
nsCOMPtr<nsICacheEntryDescriptor> mCacheDescriptor;
|
|
nsCOMPtr<nsIAssociatedContentSecurity> mAssociatedContentSecurity;
|
|
bool mIPCClosed; // PHttpChannel actor has been Closed()
|
|
|
|
nsCOMPtr<nsIChannel> mRedirectChannel;
|
|
nsCOMPtr<nsIAsyncVerifyRedirectCallback> mRedirectCallback;
|
|
|
|
nsAutoPtr<class nsHttpChannel::OfflineCacheEntryAsForeignMarker> mOfflineForeignMarker;
|
|
|
|
// state for combining OnStatus/OnProgress with OnDataAvailable
|
|
// into one IPDL call to child.
|
|
nsresult mStoredStatus;
|
|
PRUint64 mStoredProgress;
|
|
PRUint64 mStoredProgressMax;
|
|
|
|
bool mSentRedirect1Begin : 1;
|
|
bool mSentRedirect1BeginFailed : 1;
|
|
bool mReceivedRedirect2Verify : 1;
|
|
};
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_net_HttpChannelParent_h
|