diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-07-21 21:30:26 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-07-21 21:31:04 +0200 |
commit | 91de3341df7e08094e17a34053b8e21c89ab02a7 (patch) | |
tree | fafc6b9475618a2055e627d0f5a68593ee11eb4f /netwerk/protocol/http/nsHttpTransaction.h | |
parent | 1dbed95e4c43fdbcc2d959ddb06ebe6331afb9d8 (diff) | |
download | UXP-91de3341df7e08094e17a34053b8e21c89ab02a7.tar UXP-91de3341df7e08094e17a34053b8e21c89ab02a7.tar.gz UXP-91de3341df7e08094e17a34053b8e21c89ab02a7.tar.lz UXP-91de3341df7e08094e17a34053b8e21c89ab02a7.tar.xz UXP-91de3341df7e08094e17a34053b8e21c89ab02a7.zip |
Revert "Implement a threadsafe & revised version of http2PushedStream."
Backed out because of gcc build failures.
This reverts commit 66fae1d81013a2321e7d607a426f834a01b847ce.
Diffstat (limited to 'netwerk/protocol/http/nsHttpTransaction.h')
-rw-r--r-- | netwerk/protocol/http/nsHttpTransaction.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/netwerk/protocol/http/nsHttpTransaction.h b/netwerk/protocol/http/nsHttpTransaction.h index 1197bd98e..262796d71 100644 --- a/netwerk/protocol/http/nsHttpTransaction.h +++ b/netwerk/protocol/http/nsHttpTransaction.h @@ -131,14 +131,14 @@ public: nsHttpTransaction *QueryHttpTransaction() override { return this; } - already_AddRefed<Http2PushedStreamWrapper> GetPushedStream() { - return do_AddRef(mPushedStream); + Http2PushedStream *GetPushedStream() { return mPushedStream; } + Http2PushedStream *TakePushedStream() + { + Http2PushedStream *r = mPushedStream; + mPushedStream = nullptr; + return r; } - already_AddRefed<Http2PushedStreamWrapper> TakePushedStream() {
- return mPushedStream.forget();
- }
-
- void SetPushedStream(Http2PushedStreamWrapper* push) { mPushedStream = push; } + void SetPushedStream(Http2PushedStream *push) { mPushedStream = push; } uint32_t InitialRwin() const { return mInitialRwin; }; bool ChannelPipeFull() { return mWaitingOnPipeOut; } @@ -264,7 +264,7 @@ private: // so far been skipped. uint32_t mInvalidResponseBytesRead; - RefPtr<Http2PushedStreamWrapper> mPushedStream; + Http2PushedStream *mPushedStream; uint32_t mInitialRwin; nsHttpChunkedDecoder *mChunkedDecoder; |