mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
8c296bbcd4
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
118 lines
4.6 KiB
C++
118 lines
4.6 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 uint32_t& loadFlags,
|
|
const RequestHeaderTuples& requestHeaders,
|
|
const nsHttpAtom& requestMethod,
|
|
const IPC::InputStream& uploadStream,
|
|
const bool& uploadStreamHasHeaders,
|
|
const uint16_t& priority,
|
|
const uint8_t& redirectionLimit,
|
|
const bool& allowPipelining,
|
|
const bool& forceAllowThirdPartyCookie,
|
|
const bool& doResumeAt,
|
|
const uint64_t& startPos,
|
|
const nsCString& entityID,
|
|
const bool& chooseApplicationCache,
|
|
const nsCString& appCacheClientID,
|
|
const bool& allowSpdy,
|
|
const IPC::SerializedLoadContext& loadContext) MOZ_OVERRIDE;
|
|
|
|
virtual bool RecvConnectChannel(const uint32_t& channelId);
|
|
virtual bool RecvSetPriority(const uint16_t& 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 int32_t& high,
|
|
const int32_t& low,
|
|
const int32_t& broken,
|
|
const int32_t& 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;
|
|
uint64_t mStoredProgress;
|
|
uint64_t mStoredProgressMax;
|
|
|
|
bool mSentRedirect1Begin : 1;
|
|
bool mSentRedirect1BeginFailed : 1;
|
|
bool mReceivedRedirect2Verify : 1;
|
|
|
|
nsCOMPtr<nsILoadContext> mLoadContext;
|
|
};
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_net_HttpChannelParent_h
|