summaryrefslogtreecommitdiffstats
path: root/netwerk/protocol/http/Http2Push.h
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-07-21 21:30:26 +0200
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-07-21 21:31:04 +0200
commit91de3341df7e08094e17a34053b8e21c89ab02a7 (patch)
treefafc6b9475618a2055e627d0f5a68593ee11eb4f /netwerk/protocol/http/Http2Push.h
parent1dbed95e4c43fdbcc2d959ddb06ebe6331afb9d8 (diff)
downloadUXP-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/Http2Push.h')
-rw-r--r--netwerk/protocol/http/Http2Push.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/netwerk/protocol/http/Http2Push.h b/netwerk/protocol/http/Http2Push.h
index d4b71c1ef..fd39eb2c7 100644
--- a/netwerk/protocol/http/Http2Push.h
+++ b/netwerk/protocol/http/Http2Push.h
@@ -123,24 +123,6 @@ private:
uint32_t mBufferedHTTP1Consumed;
};
-class Http2PushedStreamWrapper : public nsISupports {
-public:
- NS_DECL_THREADSAFE_ISUPPORTS
- bool DispatchRelease();
-
- explicit Http2PushedStreamWrapper(Http2PushedStream* aPushStream);
-
- nsCString& GetRequestString() { return mRequestString; }
- Http2PushedStream* GetStream();
- void OnPushFailed();
-
-private:
- virtual ~Http2PushedStreamWrapper();
-
- nsCString mRequestString;
- WeakPtr<Http2Stream> mStream;
-};
-
} // namespace net
} // namespace mozilla