HttpInfo.h 570 B

1234567891011121314151617181920212223242526
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http:mozilla.org/MPL/2.0/. */
  4. #ifndef nsHttpInfo__
  5. #define nsHttpInfo__
  6. #include "nsTArrayForwardDeclare.h"
  7. namespace mozilla {
  8. namespace net {
  9. struct HttpRetParams;
  10. class HttpInfo
  11. {
  12. public:
  13. /* Calls getConnectionData method in nsHttpConnectionMgr. */
  14. static void GetHttpConnectionData(nsTArray<HttpRetParams> *);
  15. };
  16. } // namespace net
  17. } // namespace mozilla
  18. #endif // nsHttpInfo__