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

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

Issue 143073006: Minor cleanup of SetQuicServerInfo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Minor cleanup Created 6 years, 10 months 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 | Annotate | Revision Log
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_cache_transaction.h" 5 #include "net/http/http_cache_transaction.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 8
9 #if defined(OS_POSIX) 9 #if defined(OS_POSIX)
10 #include <unistd.h> 10 #include <unistd.h>
(...skipping 14 matching lines...) Expand all
25 #include "base/time/time.h" 25 #include "base/time/time.h"
26 #include "net/base/completion_callback.h" 26 #include "net/base/completion_callback.h"
27 #include "net/base/io_buffer.h" 27 #include "net/base/io_buffer.h"
28 #include "net/base/load_flags.h" 28 #include "net/base/load_flags.h"
29 #include "net/base/load_timing_info.h" 29 #include "net/base/load_timing_info.h"
30 #include "net/base/net_errors.h" 30 #include "net/base/net_errors.h"
31 #include "net/base/net_log.h" 31 #include "net/base/net_log.h"
32 #include "net/base/upload_data_stream.h" 32 #include "net/base/upload_data_stream.h"
33 #include "net/cert/cert_status_flags.h" 33 #include "net/cert/cert_status_flags.h"
34 #include "net/disk_cache/disk_cache.h" 34 #include "net/disk_cache/disk_cache.h"
35 #include "net/http/disk_cache_based_quic_server_info.h"
36 #include "net/http/http_network_session.h" 35 #include "net/http/http_network_session.h"
37 #include "net/http/http_request_info.h" 36 #include "net/http/http_request_info.h"
38 #include "net/http/http_response_headers.h" 37 #include "net/http/http_response_headers.h"
39 #include "net/http/http_transaction.h" 38 #include "net/http/http_transaction.h"
40 #include "net/http/http_util.h" 39 #include "net/http/http_util.h"
41 #include "net/http/partial_data.h" 40 #include "net/http/partial_data.h"
42 #include "net/ssl/ssl_cert_request_info.h" 41 #include "net/ssl/ssl_cert_request_info.h"
43 #include "net/ssl/ssl_config_service.h" 42 #include "net/ssl/ssl_config_service.h"
44 43
45 using base::Time; 44 using base::Time;
(...skipping 2469 matching lines...) Expand 10 before | Expand all | Expand 10 after
2515 default: 2514 default:
2516 NOTREACHED(); 2515 NOTREACHED();
2517 } 2516 }
2518 } 2517 }
2519 2518
2520 void HttpCache::Transaction::OnIOComplete(int result) { 2519 void HttpCache::Transaction::OnIOComplete(int result) {
2521 DoLoop(result); 2520 DoLoop(result);
2522 } 2521 }
2523 2522
2524 } // namespace net 2523 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698