summaryrefslogtreecommitdiffstats
path: root/net/http/http_response_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/http_response_info.h')
-rw-r--r--net/http/http_response_info.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/net/http/http_response_info.h b/net/http/http_response_info.h
index 5563ada..671a390 100644
--- a/net/http/http_response_info.h
+++ b/net/http/http_response_info.h
@@ -2,19 +2,23 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef NET_HTTP_HTTP_RESPONSE_INFO_H__
-#define NET_HTTP_HTTP_RESPONSE_INFO_H__
+#ifndef NET_HTTP_HTTP_RESPONSE_INFO_H_
+#define NET_HTTP_HTTP_RESPONSE_INFO_H_
#include "base/time.h"
#include "net/base/auth.h"
#include "net/base/ssl_info.h"
-#include "net/http/http_response_headers.h"
#include "net/http/http_vary_data.h"
namespace net {
+class HttpResponseHeaders;
+
class HttpResponseInfo {
public:
+ HttpResponseInfo();
+ ~HttpResponseInfo();
+
// The following is only defined if the request_time memmber is set.
// If this response was resurrected from cache, then this bool is set, and
// request_time may corresponds to a time "far" in the past. Note that
@@ -48,5 +52,4 @@ class HttpResponseInfo {
} // namespace net
-#endif // NET_HTTP_HTTP_RESPONSE_INFO_H__
-
+#endif // NET_HTTP_HTTP_RESPONSE_INFO_H_