| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_HTTP_HTTP_STREAM_PARSER_H_ | 5 #ifndef NET_HTTP_HTTP_STREAM_PARSER_H_ |
| 6 #define NET_HTTP_HTTP_STREAM_PARSER_H_ | 6 #define NET_HTTP_HTTP_STREAM_PARSER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "net/base/auth.h" |
| 12 #include "net/base/completion_callback.h" | 13 #include "net/base/completion_callback.h" |
| 13 #include "net/base/net_log.h" | 14 #include "net/base/net_log.h" |
| 14 #include "net/base/upload_data_stream.h" | 15 #include "net/base/upload_data_stream.h" |
| 15 #include "net/http/http_chunked_decoder.h" | 16 #include "net/http/http_chunked_decoder.h" |
| 16 | 17 |
| 17 namespace net { | 18 namespace net { |
| 18 | 19 |
| 19 class ClientSocketHandle; | 20 class ClientSocketHandle; |
| 20 class DrainableIOBuffer; | 21 class DrainableIOBuffer; |
| 21 class GrowableIOBuffer; | 22 class GrowableIOBuffer; |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 | 189 |
| 189 // Callback to be used when doing IO. | 190 // Callback to be used when doing IO. |
| 190 CompletionCallbackImpl<HttpStreamParser> io_callback_; | 191 CompletionCallbackImpl<HttpStreamParser> io_callback_; |
| 191 | 192 |
| 192 DISALLOW_COPY_AND_ASSIGN(HttpStreamParser); | 193 DISALLOW_COPY_AND_ASSIGN(HttpStreamParser); |
| 193 }; | 194 }; |
| 194 | 195 |
| 195 } // namespace net | 196 } // namespace net |
| 196 | 197 |
| 197 #endif // NET_HTTP_HTTP_STREAM_PARSER_H_ | 198 #endif // NET_HTTP_HTTP_STREAM_PARSER_H_ |
| OLD | NEW |