summaryrefslogtreecommitdiffstats
path: root/net/http/http_stream_parser.h
diff options
context:
space:
mode:
authorRicardo Cerqueira <cyanogenmod@cerqueira.org>2012-11-19 14:53:55 +0000
committerRicardo Cerqueira <cyanogenmod@cerqueira.org>2012-11-19 14:53:55 +0000
commit657fb1c9269ce235b66a0f32c9bf0afc64fa7c77 (patch)
tree396a4bc17c30655c78fd62fe34778900c40a97cc /net/http/http_stream_parser.h
parent4ec08dd85e9e4584f1bb0cd6110590f367d8b258 (diff)
downloadexternal_chromium-657fb1c9269ce235b66a0f32c9bf0afc64fa7c77.zip
external_chromium-657fb1c9269ce235b66a0f32c9bf0afc64fa7c77.tar.gz
external_chromium-657fb1c9269ce235b66a0f32c9bf0afc64fa7c77.tar.bz2
Revert "net: networking optimizations"
This reverts commit 5fbe95affc8eeed93c678b1d271f64dcc4dd919b.
Diffstat (limited to 'net/http/http_stream_parser.h')
-rw-r--r--net/http/http_stream_parser.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/net/http/http_stream_parser.h b/net/http/http_stream_parser.h
index fa3e6fc..2192eff 100644
--- a/net/http/http_stream_parser.h
+++ b/net/http/http_stream_parser.h
@@ -1,5 +1,4 @@
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Copyright (c) 2012, Code Aurora Forum. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -37,9 +36,7 @@ class HttpStreamParser : public ChunkCallback {
HttpStreamParser(ClientSocketHandle* connection,
const HttpRequestInfo* request,
GrowableIOBuffer* read_buffer,
- const BoundNetLog& net_log,
- bool using_proxy = false);
-
+ const BoundNetLog& net_log);
~HttpStreamParser();
// These functions implement the interface described in HttpStream with
@@ -189,10 +186,6 @@ class HttpStreamParser : public ChunkCallback {
// The underlying socket.
ClientSocketHandle* const connection_;
- bool using_proxy_;
-
- bool has_to_retry_;
-
BoundNetLog net_log_;
// Callback to be used when doing IO.