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

Side by Side Diff: net/spdy/spdy_http_stream.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/server/web_socket_encoder.cc ('k') | net/tools/dump_cache/dump_cache.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/spdy/spdy_http_stream.h" 5 #include "net/spdy/spdy_http_stream.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <list> 8 #include <list>
9 #include <utility> 9 #include <utility>
10 10
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/callback_helpers.h" 12 #include "base/callback_helpers.h"
13 #include "base/location.h" 13 #include "base/location.h"
14 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/single_thread_task_runner.h" 15 #include "base/single_thread_task_runner.h"
16 #include "base/strings/stringprintf.h"
17 #include "base/threading/thread_task_runner_handle.h" 16 #include "base/threading/thread_task_runner_handle.h"
18 #include "base/values.h" 17 #include "base/values.h"
19 #include "net/base/host_port_pair.h" 18 #include "net/base/host_port_pair.h"
20 #include "net/base/upload_data_stream.h" 19 #include "net/base/upload_data_stream.h"
21 #include "net/http/http_request_headers.h" 20 #include "net/http/http_request_headers.h"
22 #include "net/http/http_request_info.h" 21 #include "net/http/http_request_info.h"
23 #include "net/http/http_response_info.h" 22 #include "net/http/http_response_info.h"
24 #include "net/log/net_log_event_type.h" 23 #include "net/log/net_log_event_type.h"
25 #include "net/log/net_log_with_source.h" 24 #include "net/log/net_log_with_source.h"
26 #include "net/spdy/spdy_header_block.h" 25 #include "net/spdy/spdy_header_block.h"
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 details->connection_info = HttpResponseInfo::CONNECTION_INFO_HTTP2; 611 details->connection_info = HttpResponseInfo::CONNECTION_INFO_HTTP2;
613 return; 612 return;
614 } 613 }
615 614
616 void SpdyHttpStream::SetPriority(RequestPriority priority) { 615 void SpdyHttpStream::SetPriority(RequestPriority priority) {
617 // TODO(akalin): Plumb this through to |stream_request_| and 616 // TODO(akalin): Plumb this through to |stream_request_| and
618 // |stream_|. 617 // |stream_|.
619 } 618 }
620 619
621 } // namespace net 620 } // namespace net
OLDNEW
« no previous file with comments | « net/server/web_socket_encoder.cc ('k') | net/tools/dump_cache/dump_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698