ReplacedHttpResponse.h (1015B)
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */ 3 /* This Source Code Form is subject to the terms of the Mozilla Public 4 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 7 #include "nsString.h" 8 #include "nsHttpHeaderArray.h" 9 #include "nsIReplacedHttpResponse.h" 10 11 namespace mozilla::net { 12 13 // A ReplaceHttpResponse holds data which will be used to override the response 14 // of a http channel before the request is sent over the network. 15 // See nsIHttpChannelInternal::setResponseOverride to override the response. 16 class ReplacedHttpResponse : nsIReplacedHttpResponse { 17 public: 18 NS_DECL_THREADSAFE_ISUPPORTS 19 NS_DECL_NSIREPLACEDHTTPRESPONSE 20 21 private: 22 virtual ~ReplacedHttpResponse() = default; 23 uint16_t mResponseStatus = 0; 24 nsCString mResponseStatusText; 25 nsCString mResponseBody; 26 nsHttpHeaderArray mResponseHeaders; 27 }; 28 29 } // namespace mozilla::net