Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: net/http/http_proxy_client_socket.cc

Issue 2511683002: Remove unneeded stringprintf.h usage in chrome/ and net/ (Closed)
Patch Set: rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/http/http_network_transaction.cc ('k') | net/http/http_server_properties_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #include "net/http/http_proxy_client_socket.h" 5 #include "net/http/http_proxy_client_socket.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/profiler/scoped_tracker.h" 9 #include "base/profiler/scoped_tracker.h"
10 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
11 #include "base/strings/stringprintf.h"
12 #include "base/values.h" 11 #include "base/values.h"
13 #include "net/base/auth.h" 12 #include "net/base/auth.h"
14 #include "net/base/host_port_pair.h" 13 #include "net/base/host_port_pair.h"
15 #include "net/base/io_buffer.h" 14 #include "net/base/io_buffer.h"
16 #include "net/base/proxy_delegate.h" 15 #include "net/base/proxy_delegate.h"
17 #include "net/http/http_basic_stream.h" 16 #include "net/http/http_basic_stream.h"
18 #include "net/http/http_network_session.h" 17 #include "net/http/http_network_session.h"
19 #include "net/http/http_request_info.h" 18 #include "net/http/http_request_info.h"
20 #include "net/http/http_response_headers.h" 19 #include "net/http/http_response_headers.h"
21 #include "net/http/http_stream_parser.h" 20 #include "net/http/http_stream_parser.h"
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 next_state_ = STATE_DRAIN_BODY; 524 next_state_ = STATE_DRAIN_BODY;
526 return OK; 525 return OK;
527 } 526 }
528 527
529 return DidDrainBodyForAuthRestart(); 528 return DidDrainBodyForAuthRestart();
530 } 529 }
531 530
532 //---------------------------------------------------------------- 531 //----------------------------------------------------------------
533 532
534 } // namespace net 533 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_network_transaction.cc ('k') | net/http/http_server_properties_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698